namespace XHWK.Model
{
public class Model_TsubjectbookList
{
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; }
}
}