using SqlSugar; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace MyCode.Project.Domain.Message.Response.JackYun { public class PushOrderListResp { /// /// Desc:店铺编码 /// Default: /// Nullable:True /// [SugarColumn(ColumnName = "shopCode")] public string ShopCode { get; set; } /// /// Desc: /// Default: /// Nullable:True /// [SugarColumn(ColumnName = "shopName")] public string ShopName { get; set; } /// /// Desc: /// Default: /// Nullable:True /// [SugarColumn(ColumnName = "warehouseName")] public string WarehouseName { get; set; } /// /// Desc: /// Default: /// Nullable:True /// [SugarColumn(ColumnName = "warehouseCode")] public string WarehouseCode { get; set; } /// /// Desc: /// Default: /// Nullable:True /// [SugarColumn(ColumnName = "warehouseId")] public string WarehouseId { get; set; } /// /// Desc:店铺id /// Default: /// Nullable:True /// [SugarColumn(ColumnName = "shopId")] public long? ShopId { get; set; } /// /// Desc:0=未处理 1=已合并 2=已推送 /// Default:0 /// Nullable:True /// [SugarColumn(ColumnName = "status")] public int? Status { get; set; } /// /// Desc:发货时间 /// Default: /// Nullable:True /// [SugarColumn(ColumnName = "consignTime")] public string ConsignTime { get; set; } /// /// Desc: /// Default: /// Nullable:True /// [SugarColumn(ColumnName = "goodsId")] public string GoodsId { get; set; } /// /// Desc:销售总金额(数量×单价) /// Default: /// Nullable:False /// [SugarColumn(ColumnName = "sellTotal")] public decimal SellTotal { get; set; } /// /// Desc:数量 /// Default: /// Nullable:False /// [SugarColumn(ColumnName = "sellCount")] public int SellCount { get; set; } /// /// Desc:实付金额 /// Default: /// Nullable:False /// [SugarColumn(ColumnName = "divideSellTotal")] public decimal DivideSellTotal { get; set; } /// /// Desc:条码,用这个匹配金蝶物料编码 /// Default: /// Nullable:True /// [SugarColumn(ColumnName = "barcode")] public string Barcode { get; set; } /// /// Desc:订单类型 销售单类型(1:零售业务;2:代发货(来自分销商);3:预售订单;4:周期性订购;5:代销售(供货商发货);6:现款现货;7:售后发货;8:售后退货;9:批发业务(B2B);10:试销业务;11:错漏调整;12:仅退款;13:销售返利;14:大B2B业务;15物流买赔;16销售对账差异 91:自定义1;92:自定义2;93:自定义3...100:自定义10) /// Default: /// Nullable:True /// public int? TradeType { get; set; } /// /// Desc: /// Default: /// Nullable:True /// [SugarColumn(ColumnName = "goodsNo")] public string GoodsNo { get; set; } } }