using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace WMS.Info.Dto { public class StockLineDetailRequest { // /// Desc:出库单号 /// Default: /// Nullable:False /// public string F_pNo { get; set; } /// /// Desc:物料编码 /// Default: /// Nullable:True /// public string F_matNo { get; set; } /// /// 物料名称 /// public string F_matName { get; set; } /// /// Desc:物料类型 /// Default: /// Nullable:False /// public int F_matType { get; set; } /// /// Desc:托盘号 /// Default: /// Nullable:True /// public string F_trayNo { get; set; } /// /// Desc:箱号 /// Default: /// Nullable:False /// public string F_boxNo { get; set; } /// /// Desc:项目号 /// Default: /// Nullable:False /// public string F_projectNo { get; set; } /// /// Desc:数量 /// Default: /// Nullable:True /// public int F_quantity { get; set; } /// /// Desc:指定数量 /// Default: /// Nullable:True /// public int F_AssignQty { get; set; } } }