using System; using System.Collections.Generic; using System.Linq; using SqlSugar; namespace MES.Service.Modes { /// /// 销售出货通知单子表 /// [SugarTable("MES_OUTWARE_DETAILS")] public class MesOutwareDetails { /// /// 主键ID /// [SugarColumn(ColumnName="ID", OracleSequenceName = "SEQ_BASEINFO_ID", IsPrimaryKey = true )] public decimal Id { get; set; } /// /// 主表ID /// [SugarColumn(ColumnName="PID" )] public decimal? Pid { get; set; } /// /// 订单单别 /// [SugarColumn(ColumnName="ORDER_TYPE" )] public decimal? OrderType { get; set; } /// /// 订单序号 /// [SugarColumn(ColumnName="ORDER_NUMBER" )] public string OrderNumber { get; set; } /// /// 订单单号 /// [SugarColumn(ColumnName="ORDER_NO" )] public string OrderNo { get; set; } /// /// 物料编码(品号) /// [SugarColumn(ColumnName="ITEM_NO" )] public string ItemNo { get; set; } /// /// 物料名称(品名) /// [SugarColumn(ColumnName="ITEM_NAME" )] public string ItemName { get; set; } /// /// 规格型号 /// [SugarColumn(ColumnName="ITEM_MODEL" )] public string ItemModel { get; set; } /// /// 仓库 /// [SugarColumn(ColumnName="DEPOT_CODE" )] public string DepotCode { get; set; } /// /// 预计出货数量 /// [SugarColumn(ColumnName="QUANTITY" )] public decimal? Quantity { get; set; } /// /// 实际出货数量 /// [SugarColumn(ColumnName="OUT_QUANTITY" )] public decimal? OutQuantity { get; set; } /// /// 出货单别 /// [SugarColumn(ColumnName="OUTWARE_TYPE" )] public decimal? OutwareType { get; set; } /// /// 出货单号 /// [SugarColumn(ColumnName="OUTWARE_NO" )] public string OutwareNo { get; set; } /// /// 类型 /// [SugarColumn(ColumnName="TYPE" )] public string Type { get; set; } /// /// 备注 /// [SugarColumn(ColumnName="REMARKS" )] public string Remarks { get; set; } } }