using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using SqlSugar; namespace ZR.Model.MES.wms { /// /// 出库单 /// [SugarTable("wms_shipment_order")] public class WmsShipmentOrder { /// /// /// [SugarColumn(ColumnName = "id", IsPrimaryKey = true, IsIdentity = true)] public long Id { get; set; } /// /// 出库单号,系统自动生成 /// [SugarColumn(ColumnName = "shipment_order_no")] public string ShipmentOrderNo { get; set; } /// /// 出库类型 /// [SugarColumn(ColumnName = "shipment_order_type")] public int? ShipmentOrderType { get; set; } /// /// 出库订单 /// [SugarColumn(ColumnName = "order_no")] public string OrderNo { get; set; } /// /// 客户 /// [SugarColumn(ColumnName = "customer_id")] public long? CustomerId { get; set; } /// /// 订单金额 /// [SugarColumn(ColumnName = "receivable_amount")] public decimal? ReceivableAmount { get; set; } /// /// 出库单状态 /// [SugarColumn(ColumnName = "shipment_order_status")] public byte? ShipmentOrderStatus { get; set; } /// /// 审核状态 /// [SugarColumn(ColumnName = "check_status")] public byte? CheckStatus { get; set; } /// /// 审核人 /// [SugarColumn(ColumnName = "check_user_id")] public long? CheckUserId { get; set; } /// /// 审核时间 /// [SugarColumn(ColumnName = "check_time")] public DateTime? CheckTime { get; set; } /// /// 波次号 /// [SugarColumn(ColumnName = "wave_no")] public string WaveNo { get; set; } /// /// 备注 /// [SugarColumn(ColumnName = "remark")] public string Remark { get; set; } /// /// 删除标识 /// 默认值: 0 /// [SugarColumn(ColumnName = "del_flag")] public byte DelFlag { get; set; } /// /// 创建人 /// [SugarColumn(ColumnName = "create_by")] public long? CreateBy { get; set; } /// /// 创建时间 /// [SugarColumn(ColumnName = "create_time")] public DateTime? CreateTime { get; set; } /// /// 修改人 /// [SugarColumn(ColumnName = "update_by")] public long? UpdateBy { get; set; } /// /// 修改时间 /// [SugarColumn(ColumnName = "update_time")] public DateTime? UpdateTime { get; set; } } }