ComplianceServer/code/Hg.Core.Entity/BAS_INNERUSER.cs

52 lines
1.0 KiB
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Hg.Core.Entity
{
[Table("aq_BAS_INNERUSER")]
public class BAS_INNERUSER
{
[Key]
public int PKID { get; set; }
public string UNAME { get; set; }
public int EID { get; set; }
public string GENDER { get; set; }
public DateTime BIRTHDAY { get; set; }
public string PASSWORD { get; set; }
public short ISDISMISS { get; set; }
public DateTime? DISMISSTIME { get; set; }
public int? DISMISSTYPE { get; set; }
public DateTime? ENTRYDATE { get; set; }
public DateTime? CTIME { get; set; }
public int? CREATEUSER { get; set; }
public DateTime? UTIME { get; set; }
public int? UPDATEUSER { get; set; }
//public DateTime? POSITIVETIME { get; set; }
//[StringLength(50)]
//public string TRUENAME { get; set; }
public short ISHIDE { get; set; }
}
}