using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace XHZB.Model { public class LoginModel { public int userid { get; set; } /// /// 姓名 /// public string username { get; set; } /// /// 登录名 /// public string loginname { get; set; } /// /// 学号 /// public string studentno { get; set; } /// /// 联系方式 /// public string userphone { get; set; } /// /// 生日 /// public string userbirthday { get; set; } /// /// 身份号 /// public string cardid { get; set; } /// /// 头像地址 /// public string headpic { get; set; } /// /// 用户类型999超级管理员0学校管理员1老师2学生 /// public string usertype { get; set; } /// /// 状态 /// public int userstate { get; set; } public int createid { get; set; } public string createname { get; set; } public string createtime { get; set; } public string deleteid { get; set; } public string deletetime { get; set; } /// /// 当前年份 /// public int year { get; set; } /// /// 学校id /// public int schoolid { get; set; } /// /// 学校名称 /// public string schoolname { get; set; } /// /// 状态 /// public int schoolstate { get; set; } /// /// 学校阶段1小学2初中3高中4大学 /// public int schoollevel { get; set; } } }