ComplianceServer/oldcode/Model/Entity/BAS_INNERUSER.cs

69 lines
1.9 KiB
C#

namespace WX.CRM.Model.Entity
{
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
[Table("UPDEV.BAS_INNERUSER")]
public partial class BAS_INNERUSER
{
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2214:DoNotCallOverridableMethodsInConstructors")]
public BAS_INNERUSER()
{
BAS_INNERUSERROLE = new HashSet<BAS_INNERUSERROLE>();
}
[Key]
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; }
[StringLength(50)]
public string TRUENAME { get; set; }
public short ISHIDE { get; set; }
/// <summary>
/// Óû§ID
/// </summary>
public decimal? EMPLOYEE_ID { get; set; }
public virtual BAS_INNERUSERGROUP BAS_INNERUSERGROUP { get; set; }
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")]
public virtual ICollection<BAS_INNERUSERROLE> BAS_INNERUSERROLE { get; set; }
}
}