using System; using System.Collections.Generic; using System.Linq; using System.Text; using SqlSugar; namespace JiepeiWMS.Model.Models { /// /// /// [SugarTable("WMOrderMain", "Jiepei_WMS")] public class WMOrderMain { public WMOrderMain() { } /// /// 订单信息Id /// [SugarColumn(IsPrimaryKey = true, IsIdentity = true)] public int Id { get; set; } /// /// 来源类型:0.内贸 1.外贸 /// public int SourceType { get; set; } /// /// 订单编号 /// public string OrderNo { get; set; } /// /// 状态 0已发货 1已确认收货 /// public int Status { get; set; } /// /// 订单包编号 /// public string GroupNo { get; set; } /// /// 下单时间 /// public DateTime? CreateTime { get; set; } /// /// 投产时间 /// public DateTime? SureConfirmTime { get; set; } /// /// 付款时间 /// public DateTime? PayTime { get; set; } /// /// 发货时间 /// public DateTime? SendTime { get; set; } /// /// 产品类型:1.PCB 2.钢网 3.SMT 4.元器件 /// public int ProType { get; set; } /// /// 数据类型 /// public int DataType { get; set; } /// /// 产品费 /// public decimal? TotalMoney { get; set; } /// /// 运费 /// public decimal? ShipMoney { get; set; } /// /// 浮动金额 /// public decimal? PreferentialMoney { get; set; } public decimal? TaxMoney { get; set; } public decimal? PaypalPayMoney { get; set; } public decimal? PresentMoney { get; set; } public decimal? PaidMoney { get; set; } public decimal? CostMoney { get; set; } public decimal? PCBATotalMoney { get; set; } public decimal? PCBACostMoney { get; set; } public int OutType { get; set; } public string JoinFactoryName { get; set; } public int FinanceTarget { get; set; } public string MbNo { get; set; } public int? IsTJ { get; set; } public int MainStatus { get; set; } public bool IsContainSmt { get; set; } /// /// 订单信息列表 /// [SugarColumn(IsIgnore = true)] public List OrderInfoList { get; set; } } }