using System.Collections.Generic;
namespace XHWK.Model
{
public class Model_UserInfo
{
///
/// 用户id
///
private int _userid;
///
/// 姓名
///
private string _username;
///
/// 登录名
///
private string _loginname;
///
/// 学号
///
private string _studentno;
///
/// 联系方式
///
private string _userphone;
///
/// 生日
///
private string _userbirthday;
///
/// 身份号
///
private string _cardid;
///
/// 头像地址
///
private string _headpic;
///
/// 用户类型999超级管理员0学校管理员1老师2学生
///
private string _usertype;
///
/// 状态
///
private int _userstate;
private int _createid;
private string _createname;
private string _createtime;
private string _deleteid;
private string _deletetime;
///
/// 当前年份
///
private int _year;
///
/// 学校id
///
private int _schoolid;
///
/// 学校名称
///
private string _schoolname;
///
/// 状态
///
private int _schoolstate;
///
/// 学校阶段1小学2初中3高中4大学
///
private int _schoollevel;
private List _wkdata;
private string _cloudcode;
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 Wkdata { get => _wkdata; set => _wkdata = value; }
public string cloudcode { get => _cloudcode; set => _cloudcode = value; }
}
}