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_Send
|
{
|
[Key]
|
public int Send_Id { get; set; }
|
|
[Required]
|
[StringLength(50)]
|
public string SendCode { 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 ExpressCorp_Id { get; set; }
|
|
[Required]
|
[StringLength(50)]
|
public string ExpressCorpName { get; set; }
|
|
[StringLength(50)]
|
public string Reciever { get; set; }
|
|
public int? Storage_Id { get; set; }
|
|
[StringLength(50)]
|
public string StorageName { get; set; }
|
|
public byte? IsAgentMoney { get; set; }
|
|
public int? BillCount { get; set; }
|
|
[Column(TypeName = "money")]
|
public decimal? AgentTotalMoney { get; set; }
|
|
public int? TotalQuantityOrder { get; set; }
|
|
[Column(TypeName = "money")]
|
public decimal? DiscountAmount { get; set; }
|
|
[Column(TypeName = "money")]
|
public decimal? GrandTotal { 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; }
|
|
public decimal? Solidity { get; set; }
|
|
public decimal? Weight { get; set; }
|
|
public DateTime? GatherDate { get; set; }
|
|
[Column(TypeName = "money")]
|
public decimal? GoodsValue { get; set; }
|
|
public byte? StatusID { get; set; }
|
|
[StringLength(50)]
|
public string StatusText { get; set; }
|
|
[StringLength(50)]
|
public string Auditor { get; set; }
|
|
public byte? Auditing { get; set; }
|
|
public DateTime? AuditDate { get; set; }
|
|
public byte? Enable { get; set; }
|
|
public string Remark { get; set; }
|
|
public int CreateID { get; set; }
|
|
[Required]
|
[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; }
|
}
|
}
|