using System; using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; namespace Zxd.Entity.Zxd { [Table("L2_SOFT_ORDER")] public partial class L2_SOFT_ORDER { [Key] public int ORDERID { get; set; } [StringLength(100)] public string? RESID { get; set; } public int? PRODUCTID { get; set; } //[Required] [StringLength(50)] public string? PRODUCTCODE { get; set; } //[Required] [StringLength(50)] public string? USERNAME { get; set; } /// /// ����״̬ :0δ��ͨ��1�ѿ�ͨ��2�ѳ�����3�߼�ɾ�� /// public int? ORDERSTATUS { get; set; } public int? ORDERTYPE { get; set; } public int? OPENUSER { get; set; } public int? DAYS { get; set; } public decimal? PRICE { get; set; } public DateTime? OTIME { get; set; } public decimal? CANCELUSER { get; set; } public DateTime? CANCELTIME { get; set; } [StringLength(200)] public string? MEMO { get; set; } public int? CREATEUSER { get; set; } public DateTime CTIME { get; set; } public int? COMPANYID { get; set; } [StringLength(50)] public string? WEBORDERID { get; set; } public string? companycode { get; set; } public int? MainOrderId { get; set; } public int? deptid { get; set; } public string? deptName { get; set; } public int? groupid { get; set; } public int? sourcetype { 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; } public string? productname { get; set; } } }