namespace XHWK.Model
{
public class ModelTsubjectbookList
{
private string _tbid;
private string _lsbid;
private string _selected;
private string _subjectid;
private string _subjectname;
private string _lsbname;
private string _coverpath;
private string _versionname;
///
/// 教师教材关系id
///
public string Tbid { get => _tbid; set => _tbid = value; }
///
/// 教材关联关系表id
///
public string Lsbid { get => _lsbid; set => _lsbid = value; }
///
/// 是否选中:0未选中1已选中
///
public string Selected { get => _selected; set => _selected = value; }
///
/// 科目id
///
public string Subjectid { get => _subjectid; set => _subjectid = value; }
///
/// 科目名称
///
public string Subjectname { get => _subjectname; set => _subjectname = value; }
///
/// 册别名称
///
public string Lsbname { get => _lsbname; set => _lsbname = value; }
///
/// 封面图地址
///
public string Coverpath { get => _coverpath; set => _coverpath = value; }
///
/// 版本名称
///
public string Versionname { get => _versionname; set => _versionname = value; }
}
}