using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Ropin.Inspection.Model.ViewModel { /// /// 创建 /// public class TsysUserCreateViewModel:BaseModel { //public Guid C_UserID { get; set; } public string C_LicenseCode { get; set; } public string C_Post { get; set; } public string C_UserName { get; set; } //public string C_WechatID { get; set; } public string C_ProgramID { get; set; } //public string C_Password { get; set; } public string C_Name { get; set; } public int I_Render { get; set; } public string C_IDNum { get; set; } public Guid? C_OrgCode { get; set; } public string C_ImagePath { get; set; } public DateTime? D_Birthday { get; set; } public string C_Address { get; set; } public int? I_Sort { get; set; } public string C_Mobile { get; set; } public string C_Phone { get; set; } public string C_Email { get; set; } public string C_Remark { get; set; } public IEnumerable RoleCodeList { get; set; } } }