using System; using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; namespace CRM.Core.Model.Entity { [Table("Wx_SzzyOrder_HandGift")] public class Wx_SzzyOrder_HandGift { [Key] public decimal orderid { get; set; } public decimal mainorderid { get; set; } public string softusername { get; set; } public string resid { get; set; } public int productid { get; set; } public string productcode { get; set; } public int orderstatus { get; set; } public string subproductcode { get; set; } public string subproductname { get; set; } public string memo { get; set; } public string createuser { get; set; } public DateTime ctime { get; set; } public int channel { get; set; } public string companycode { get; set; } public int giftdays { get; set; } public string openuser { get; set; } public DateTime? optime { get; set; } public decimal? szzyorderid { get; set; } //public string parentoutorderno { get; set; } //public string oldoutorderno { get; set; } //public DateTime? outorderclosetime { get; set; } //public string userid { get; set; } public string checkmemo { get; set; } public DateTime? otime { get; set; } public int? producttype { get; set; } public DateTime? closetime { get; set; } public string closeuser { get; set; } public string closememo { get; set; } /// /// 合同状态 /// public int? contractstatus { get; set; } /// /// 合同签订时间 /// public DateTime? contractctime { get; set; } [StringLength(50)] public string CONTRACTCODE { get; set; } public int RISKCTRLSTATUS { get; set; } [StringLength(30)] public string CNAME { get; set; } public string idcard { get; set; } public int? adequacy { get; set; } } }