using System; using System.Collections.Generic; using System.Text; namespace Model.ModelDto.LogDto { public class LogWorkShopDto { /// /// 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 decimal Qty { get; set; } /// /// 操作时间 /// public string CreateTime { get; set; } /// /// 操作人 /// public string CreateUserName { get; set; } } }