59 lines
1.0 KiB
C#
59 lines
1.0 KiB
C#
using System;
|
|
|
|
namespace DeviceRepair.Models.SFC
|
|
{
|
|
public class TsSFCUserInfo
|
|
{
|
|
public int Id { get; set; }
|
|
|
|
public Guid GUID { get; set; }
|
|
|
|
public string UserCode { get; set; }
|
|
|
|
public string UserName { get; set; }
|
|
|
|
public string UserType { get; set; }
|
|
|
|
public string Dept { get; set; }
|
|
|
|
public string EMail { get; set; }
|
|
|
|
public string Tel { get; set; }
|
|
|
|
public string Image { get; set; }
|
|
|
|
public string Password { get; set; }
|
|
|
|
public string Status { get; set; }
|
|
|
|
public string CreateBy { get; set; }
|
|
|
|
|
|
public DateTime CreateOn { get; set; }
|
|
|
|
|
|
public string ModifyBy { get; set; }
|
|
|
|
|
|
public DateTime ModifyOn { get; set; }
|
|
|
|
|
|
public DateTime LastLogoutTime { get; set; }
|
|
|
|
|
|
public DateTime LastPwdAlterTime { get; set; }
|
|
|
|
|
|
public string Org { get; set; }
|
|
|
|
|
|
public string Note { get; set; }
|
|
|
|
|
|
public string PwdFirstAltered { get; set; }
|
|
|
|
|
|
public string IDCard { get; set; }
|
|
}
|
|
}
|