using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace WCS.Application.Service.WcsBoxInfo.Dto; public class WcsGroupBoxInfoDto { /// /// 物料编码 /// public string? SkuNo { get; set; } /// /// 物料名称 /// public string? SkuName { get; set; } /// /// 批次号 /// public string? LotNo { get; set; } /// /// 批次描述 /// public string? LotText { get; set; } /// /// 供应商代码 /// public string? Custom { get; set; } /// /// 供应商名称 /// public string? CustomName { get; set; } /// /// 生产日期 /// public DateTime? ProductionTime { get; set; } /// /// 过期日期 /// public DateTime? ExpirationTime { get; set; } /// /// 物料规格 /// public string? Standard { get; set; } /// /// 包装规格 /// public string? PackageStandard { get; set; } /// /// 包装单位 /// public string? PackUnit { get; set; } /// /// 存储期至 /// public DateTime? StoreTime { get; set; } }