using System; using System.Collections.Generic; using System.Text; namespace Model.ModelVm.LogVm { public class LogWorkShopVm : IndexPage { /// /// Desc:类型 /// Default: /// Nullable:True /// public string Type { get; set; } /// /// Desc:托盘号 /// Default: /// Nullable:True /// public string PalletNo { get; set; } /// /// Desc:批次号 /// Default: /// Nullable:True /// public string LotNo { get; set; } /// /// Desc:物料编码 /// Default: /// Nullable:True /// public string SkuNo { get; set; } /// /// Desc:物料名称 /// Default: /// Nullable:True /// public string SkuName { get; set; } /// /// Desc:箱码 /// Default: /// Nullable:True /// public string BoxNo { get; set; } } }