namespace WX.CRM.Model.Entity { using System; using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; [Table("UPDEV.SOFT_CUSTOMER")] public partial class SOFT_CUSTOMER { [Key] public decimal CUSTOMERID { get; set; } [Required] [StringLength(50)] public string SOFTNAME { get; set; } [StringLength(50)] public string USERNAME { get; set; } [Required] [StringLength(18)] public string RESID { get; set; } public decimal REGCAMPAINID { get; set; } public decimal USERNO { get; set; } [StringLength(50)] public string IDCARD { get; set; } public decimal SOFTTYPE { get; set; } [StringLength(50)] public string PRODUCTCODE { get; set; } public decimal? USERSTATUS { get; set; } public DateTime? OPENDATE { get; set; } public DateTime? ENDDATE { get; set; } public DateTime CTIME { get; set; } public DateTime? UTIME { get; set; } public decimal? SALEUSERID { get; set; } } }