namespace DOAN.Model.PBL.Dto; /// /// 料架表查询对象 /// public class StoragelocationQueryDto : PagerInfo { public string Partnumber { get; set; } public string RackCode { get; set; } } /// /// 料架表输入输出对象 /// public class StoragelocationDto { public int Id { get; set; } public string RackCode { get; set; } public int LayerNum { get; set; } public string Partnumber { get; set; } /// /// 最大容量 /// public int MaxCapacity { get; set; } public int? PackageNum { get; set; } /// /// 触发报警的箱子数 /// public int? AlarmNum { get; set; } /// /// 是否缺料报警 /// public int? IsLackAlarm { get; set; } /// /// 箱子数 /// public int? IsLight { get; set; } public string CreatedBy { get; set; } public DateTime? CreatedTime { get; set; } public string UpdatedBy { get; set; } public DateTime? UpdatedTime { get; set; } } /// /// 料架表零件号聚合结果 /// public class StoragelocationPartNumberGroupDto { public string RackCode { get; set; } public string Partnumber { get; set; } public string MirrorshellName { get; set; } public string Productname { get; set; } public int PackageNum { get; set; } = 0; }