123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- using Ropin.Inspection.Model.Entities;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace Ropin.Inspection.Model
- {
- public class TsysUserViewModel : BaseViewModel
- {
- 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_WxopenID { 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 string C_UserID { get; set; }
- //public string C_Password { get; set; }
- //public string C_WechatID { get; set; }
- //public string C_Name { get; set; }
- //public string C_Mobile { 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 TSYS_UserRole UserRole { get; set; }
- public Guid UserRole { get; set; }
- //public Guid G_OrganizeCode { get; set; }
- }
- }
|