using System; namespace Ropin.Inspection.Model { public class TsysUserModel : BaseModel { public Guid C_UserID { get; set; } public string C_Password { get; set; } public string C_Name { get; set; } public string C_Mobile { get; set; } public string C_WechatID { get; set; } public string C_Email { get; set; } public string C_Remark { get; set; } public string C_IDNum { get; set; } public string C_ImagePath { get; set; } public DateTime D_Birthday { get; set; } public string C_Address { get; set; } public Guid C_CreateBy { get; set; } public DateTime D_CreateOn { get; set; } public Guid C_LastUpdatedBy { get; set; } public DateTime D_LastUpdatedOn { get; set; } public char C_Status { get; set; } } }