namespace wcftest.orm { using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; using System.Data.Entity.Spatial; public partial class CIQ_Order { [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2214:DoNotCallOverridableMethodsInConstructors")] public CIQ_Order() { CIQ_OrderList = new HashSet(); } [Key] public long CIQOrder_Id { get; set; } [StringLength(50)] public string OrderId { get; set; } [StringLength(50)] public string IEFlag { get; set; } [StringLength(50)] public string OrderStatus { get; set; } [StringLength(50)] public string EntRecordNo { get; set; } [StringLength(50)] public string EntRecordName { get; set; } [StringLength(50)] public string OrderName { get; set; } [StringLength(50)] public string OrderDocType { get; set; } [StringLength(50)] public string OrderDocId { get; set; } [StringLength(50)] public string OrderPhone { get; set; } public decimal? OrderGoodTotal { get; set; } [StringLength(50)] public string OrderGoodTotalCurr { get; set; } public decimal? Freight { get; set; } [StringLength(50)] public string FreightCurr { get; set; } public decimal? Tax { get; set; } [StringLength(50)] public string TaxCurr { get; set; } [StringLength(500)] public string Note { get; set; } public DateTime? OrderDate { get; set; } public int? CreateID { get; set; } [StringLength(50)] public string Creator { get; set; } public DateTime? CreateDate { get; set; } public int? ModifyID { get; set; } [StringLength(50)] public string Modifier { get; set; } public DateTime? ModifyDate { get; set; } public string ExpandFields { get; set; } [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")] public virtual ICollection CIQ_OrderList { get; set; } } }