|
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899 |
- using System.Collections.Generic;
-
- namespace XHWK.Model
- {
- public class Model_UserInfo
- {
-
-
-
- private int _userid;
-
-
-
- private string _username;
-
-
-
- private string _loginname;
-
-
-
- private string _studentno;
-
-
-
- private string _userphone;
-
-
-
- private string _userbirthday;
-
-
-
- private string _cardid;
-
-
-
- private string _headpic;
-
-
-
- private string _usertype;
-
-
-
- private int _userstate;
- private int _createid;
- private string _createname;
- private string _createtime;
- private string _deleteid;
- private string _deletetime;
-
-
-
- private int _year;
-
-
-
- private int _schoolid;
-
-
-
- private string _schoolname;
-
-
-
- private int _schoolstate;
-
-
-
- private int _schoollevel;
- private List<Model_WKData> _wkdata;
-
- public int Userid { get => _userid; set => _userid = value; }
- public string Username { get => _username; set => _username = value; }
- public string Loginname { get => _loginname; set => _loginname = value; }
- public string Studentno { get => _studentno; set => _studentno = value; }
- public string Userphone { get => _userphone; set => _userphone = value; }
- public string Userbirthday { get => _userbirthday; set => _userbirthday = value; }
- public string Cardid { get => _cardid; set => _cardid = value; }
- public string Headpic { get => _headpic; set => _headpic = value; }
- public string Usertype { get => _usertype; set => _usertype = value; }
- public int Userstate { get => _userstate; set => _userstate = value; }
- public int Createid { get => _createid; set => _createid = value; }
- public string Createname { get => _createname; set => _createname = value; }
- public string Createtime { get => _createtime; set => _createtime = value; }
- public string Deleteid { get => _deleteid; set => _deleteid = value; }
- public string Deletetime { get => _deletetime; set => _deletetime = value; }
- public int Year { get => _year; set => _year = value; }
- public int Schoolid { get => _schoolid; set => _schoolid = value; }
- public string Schoolname { get => _schoolname; set => _schoolname = value; }
- public int Schoolstate { get => _schoolstate; set => _schoolstate = value; }
- public int Schoollevel { get => _schoollevel; set => _schoollevel = value; }
-
-
-
- public List<Model_WKData> Wkdata { get => _wkdata; set => _wkdata = value; }
- }
- }
|