using System; using LinqToDB.Mapping; namespace TradeUsedSale.Repositories.Models { public class DT_OrderXXInfo { [PrimaryKey, Identity] public int Id { get; set; } public int? OrderId { get; set; } public decimal? TotalWeight { get; set; } public decimal? TotalSoild { get; set; } /// /// 货币 /// public string MoneyType { get; set; } /// /// Sku /// public string CustomID { get; set; } /// /// 客户id /// public string SKU { get; set; } /// /// 收件人 /// public string RevName { get; set; } /// /// 买家国家 /// public string RevCountry { get; set; } /// /// 收件地址 /// public string RevAddr { get; set; } /// /// 电话 /// public string RevPhone { get; set; } /// /// 手机 /// public string RevMoblie { get; set; } /// /// 邮箱 /// public string RevMail { get; set; } /// /// 传真 /// public string RevFax { get; set; } /// /// 收件人邮编 /// public string RevPostCode { get; set; } /// /// 提交信息 /// public string SendInfo { get; set; } /// /// 异常信息 /// public string ErrorInfo { get; set; } /// /// 购买备注 /// public string BuyRemark { get; set; } /// /// 留言 /// public string LeaveWord { get; set; } /// /// 计费方式 /// public int? FeeType { get; set; } /// /// 是否挂号 /// public int? IsRegister { get; set; } /// /// 运输方式 /// public int? Post { get; set; } /// /// 运输费用 /// public decimal? PostFee { get; set; } /// /// 包装费用 /// public decimal? BoxFee { get; set; } /// /// 货物货值 /// public decimal? GoodsFee { get; set; } /// /// 我方银行账户 /// public string BankCode { get; set; } /// /// 银行流水号 /// public string BankNo { get; set; } /// /// 客户银行账户 /// public string CustomBankCode { get; set; } /// /// 客户类型1平台2直销 /// public int? CustomType { get; set; } /// /// 错发图片id /// public string ErrorImage { get; set; } /// /// 渠道 /// public int? Channel { get; set; } /// /// 物品地址 /// public string GoodsAddr { get; set; } /// /// 跟踪码 /// public string TrackCode { get; set; } /// /// 发货仓库 /// public int? StoreId { get; set; } /// /// 快递信息 /// public string PostInfo { get; set; } /// /// 订单状态1正常2有留言3异常 /// public int? OrderState { get; set; } /// /// 收件省,州 /// public string RevProvince { get; set; } /// /// 收件城市 /// public string RevCity { get; set; } /// /// 收件人区县 /// public string RevArea { get; set; } public string PostError { get; set; } public string CountryCode { get; set; } public string CountryName { get; set; } public int? SendAddr { get; set; } public int? TrackState { get; set; } public DateTime? TrackDate { get; set; } public int? IsLeaveWord { get; set; } public int? InnerPost { get; set; } public decimal? InnerPostFee { get; set; } /// /// 前置跟踪码 /// public string FontTrackCode { get; set; } public string OnlinePostId { get; set; } public string PostOneCode { get; set; } public string TrackCode2 { get; set; } public int? LogisticsId { get; set; } public decimal? Fee1 { get; set; } public decimal? Fee2 { get; set; } public decimal? Fee3 { get; set; } public decimal? Fee4 { get; set; } public string RevProvinceCode { get; set; } public decimal? Fee11 { get; set; } public decimal? Fee12 { get; set; } public decimal? Fee13 { get; set; } public int? IsAutoTrack { get; set; } public string Zone { get; set; } } }