using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Models.ApiModei { public class UserInfoAsync { //ID(用户 ID), //HotelID(酒店 ID), //SysHotelGroupID(酒店分组 ID), //SysHotelGroupName(酒店分组名称), //GroupID(分组 ID), //GroupName(分组名称), //Account(账号), //Password(加密的密码), //Name(用户名称), //RoleID(角色 ID), //RoleName(角色名称), //Sex(性别), //Phone(电话), //Email(邮箱), //ActiveIndicator(启用), //CreateDate(创建日期,如:2020-01-01), //Sort(排序), Remark(备注) /// /// /// public int ID { get; set; } /// /// /// public int HotelID { get; set; } /// /// /// public int SysHotelGroupID { get; set; } /// /// 所有酒店 /// public string SysHotelGroupName { get; set; } /// /// /// public int GroupID { get; set; } /// /// 默认酒店 /// public string GroupName { get; set; } /// /// /// public string Account { get; set; } /// /// /// public string Password { get; set; } /// /// /// public string Name { get; set; } /// /// /// public int RoleID { get; set; } /// /// /// public string RoleName { get; set; } /// /// /// public string Sex { get; set; } /// /// /// public string Phone { get; set; } /// /// /// public string Email { get; set; } /// /// /// public bool ActiveIndicator { get; set; } /// /// /// public DateTime CreatedDate { get; set; } /// /// /// public int Sort { get; set; } /// /// /// public string Remark { get; set; } } }