namespace WX.CRM.Model.Entity { using System; using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; [Table("UPDEV.SOFT_ACTIVEORDER")] public partial class SOFT_ACTIVEORDER { [Key] public decimal ORDERID { get; set; } [StringLength(18)] public string RESID { get; set; } public decimal PRODUCTID { get; set; } [Required] [StringLength(50)] public string PRODUCTCODE { get; set; } [Required] [StringLength(50)] public string USERNAME { get; set; } public decimal ORDERSTATUS { get; set; } public decimal ORDERTYPE { get; set; } public decimal? OPENUSER { 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 decimal CREATEUSER { get; set; } public DateTime CTIME { get; set; } public decimal? COMPANYID { get; set; } [StringLength(50)] public string WEBORDERID { get; set; } } }