1234567891011121314151617181920212223242526272829303132333435363738394041 |
- namespace XHWK.Model
- {
- public class Model_TsubjectbookList
- {
- private string tbid;
- private int lsbid;
- private string selected;
- private int subjectid;
- private string subjectname;
- private string bookname;
- private string coverpath;
-
-
-
- public string Tbid { get => tbid; set => tbid = value; }
-
-
-
- public int Lsbid { get => lsbid; set => lsbid = value; }
-
-
-
- public string Selected { get => selected; set => selected = value; }
-
-
-
- public int Subjectid { get => subjectid; set => subjectid = value; }
-
-
-
- public string Subjectname { get => subjectname; set => subjectname = value; }
-
-
-
- public string Bookname { get => bookname; set => bookname = value; }
-
-
-
- public string Coverpath { get => coverpath; set => coverpath = value; }
- }
- }
|