namespace WX.CRM.Model.Entity { using System; using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; [Table("UPDEV.WX_ORDEREXT")] public partial class WX_ORDEREXT { [Key] public decimal ORDERID { get; set; } [StringLength(50)] public string NAME { get; set; } [StringLength(100)] public string SOFTUSERNAME { get; set; } public decimal? ISPAYED { get; set; } public decimal? PAYTYPE { get; set; } [StringLength(100)] public string PAYNO { get; set; } public decimal? OPENDAYS { get; set; } public decimal? AUDITUSER { get; set; } public DateTime? AUDITTIME { get; set; } public string APPUSERNAME { get; set; } public decimal? PRODUCTID { get; set; } public string PRODUCTCODE { get; set; } public string BIGPRODUCTCODE { get; set; } public string CHANNEL { get; set; } public decimal? BOOKNUM { get; set; } public decimal? ORDERSTATUS { get; set; } public decimal? ORDERSOURCE { get; set; } public string OPENUSER { get; set; } } }