ComplianceServer/oldcode/Model/Entity/QC_BAS_INNERUSER.cs

56 lines
1.3 KiB
C#

namespace WX.CRM.Model.Entity
{
using System;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
[Table("UPDEV.QC_BAS_INNERUSER")]
public partial class QC_BAS_INNERUSER
{
[Key]
public decimal RID { get; set; }
[Required]
[StringLength(6)]
public string DEPTCODE { get; set; }
public decimal PKID { get; set; }
[Required]
[StringLength(20)]
public string UNAME { get; set; }
public decimal EID { get; set; }
[Required]
[StringLength(1)]
public string GENDER { get; set; }
public DateTime BIRTHDAY { get; set; }
[Required]
[StringLength(200)]
public string PASSWORD { get; set; }
public short ISDISMISS { get; set; }
public DateTime? DISMISSTIME { get; set; }
public decimal? DISMISSTYPE { get; set; }
public DateTime? ENTRYDATE { get; set; }
public DateTime? CTIME { get; set; }
public decimal? CREATEUSER { get; set; }
public DateTime? UTIME { get; set; }
public decimal? UPDATEUSER { get; set; }
public DateTime? POSITIVETIME { get; set; }
public DateTime? RTIME { get; set; }
}
}