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 Sale_SendList { [Key] public int SendList_Id { get; set; } public int? Send_Id { get; set; } public int? StoreInfo_Id { get; set; } public int? store_id { get; set; } [StringLength(250)] public string StoreName { get; set; } public int? ExpressCorp_Id { get; set; } [StringLength(50)] public string ExpressCorpName { get; set; } public byte? OrderChannel { get; set; } public int Order_Id { get; set; } [Required] [StringLength(50)] public string OrderCode { get; set; } [StringLength(50)] public string ExpressCode { get; set; } [StringLength(50)] public string StoreOrderCode { get; set; } public byte? PrintStatusID { get; set; } [StringLength(50)] public string PrintStatusText { get; set; } public int? ShipStatusID { get; set; } [StringLength(50)] public string ShipStatusText { get; set; } public int? User_Id { get; set; } [StringLength(50)] public string UserTrueName { get; set; } public DateTime? ApplyDate { get; set; } public DateTime? PayLimitDate { get; set; } public int? Client_Id { get; set; } [StringLength(50)] public string ClientCode { get; set; } [StringLength(100)] public string ClientShortName { get; set; } public decimal? TotalQuantityOrder { get; set; } [Column(TypeName = "money")] public decimal? SubTotal { get; set; } [Column(TypeName = "money")] public decimal? DiscountAmount { get; set; } [Column(TypeName = "money")] public decimal? GrandTotal { get; set; } public int? MaterialCount { get; set; } [Column(TypeName = "money")] public decimal? GatherMoney { get; set; } [Column(TypeName = "money")] public decimal? UnGatherMoney { get; set; } [Column(TypeName = "money")] public decimal? ShippingAmount { get; set; } [Column(TypeName = "money")] public decimal? ClientShippingAmount { get; set; } [Column(TypeName = "money")] public decimal? TotalShippingAmount { get; set; } [Column(TypeName = "money")] public decimal? AgentTotalMoney { get; set; } public decimal? Solidity { get; set; } public decimal? Weight { get; set; } [Column(TypeName = "money")] public decimal? ServiceValue { get; set; } [Column(TypeName = "money")] public decimal? InsuranceAmount { get; set; } [Column(TypeName = "money")] public decimal? InsuranceFee { get; set; } [StringLength(50)] public string Package { get; set; } [StringLength(250)] public string ShippingName { get; set; } [StringLength(250)] public string BillingName { get; set; } public string ShippingAddress { get; set; } public string BillingAddress { get; set; } [StringLength(500)] public string Telephone { get; set; } [StringLength(500)] public string Mobile { get; set; } public byte? Enable { get; set; } public string Remark { 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 int? Country_Id { get; set; } [StringLength(50)] public string CountryName { get; set; } [StringLength(150)] public string CountryFullName { get; set; } [StringLength(150)] public string CountryCnName { get; set; } [StringLength(500)] public string Email { get; set; } public int? Consignor_Id { get; set; } [StringLength(50)] public string ConsignorCode { get; set; } [StringLength(150)] public string ConsignorName { get; set; } public long? Outer_Id { get; set; } [StringLength(50)] public string OuterCode { get; set; } public int? OrderPrint_Id { get; set; } [StringLength(50)] public string OrderPrintCode { get; set; } public int? PlatUser_Id { get; set; } [StringLength(50)] public string PlatUserCode { get; set; } [StringLength(50)] public string PlatUserName { get; set; } [StringLength(50)] public string PlatCorpName { get; set; } public int? UserProduct_Id { get; set; } [StringLength(50)] public string UserProductCode { get; set; } [StringLength(100)] public string UserProductAlias { get; set; } public int? Storage_Id { get; set; } [StringLength(50)] public string StorageName { get; set; } public string ExpandFields { get; set; } } }