ComplianceServer/oldcode/Model/Entity/SOFT_IMPORT_CUSTOMER.cs

54 lines
1.2 KiB
C#

namespace WX.CRM.Model.Entity
{
using System;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
[Table("UPDEV.SOFT_IMPORT_CUSTOMER")]
public partial class SOFT_IMPORT_CUSTOMER
{
[Key]
public decimal PKID { get; set; }
public decimal IMPORPTID { 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; }
[StringLength(20)]
public string MOBILE { get; set; }
}
}