pblbackend/DOAN.Model/PBL/Dto/StoragelocationDto.cs

69 lines
1.4 KiB
C#
Raw Normal View History

2024-11-04 10:15:34 +08:00
namespace DOAN.Model.PBL.Dto;
2024-09-23 11:54:56 +08:00
2024-11-04 10:15:34 +08:00
/// <summary>
/// 料架表查询对象
/// </summary>
public class StoragelocationQueryDto : PagerInfo
2024-09-23 11:54:56 +08:00
{
2024-11-04 10:15:34 +08:00
public string Partnumber { get; set; }
public string RackCode { get; set; }
}
/// <summary>
/// 料架表输入输出对象
/// </summary>
public class StoragelocationDto
{
public int Id { get; set; }
2024-09-23 11:54:56 +08:00
2024-11-04 10:15:34 +08:00
public string RackCode { get; set; }
public int LayerNum { get; set; }
public string Partnumber { get; set; }
2024-09-23 11:54:56 +08:00
/// <summary>
2024-11-04 10:15:34 +08:00
/// 最大容量
2024-09-23 11:54:56 +08:00
/// </summary>
2024-11-04 10:15:34 +08:00
public int MaxCapacity { get; set; }
2024-09-23 11:54:56 +08:00
2024-11-04 10:15:34 +08:00
public int? PackageNum { get; set; }
2024-09-23 11:54:56 +08:00
2025-01-24 11:44:27 +08:00
/// <summary>
/// 触发报警的箱子数
/// </summary>
public int? AlarmNum { get; set; }
/// <summary>
/// 是否缺料报警
/// </summary>
public int? IsLackAlarm { get; set; }
2024-11-04 10:15:34 +08:00
/// <summary>
/// 箱子数
/// </summary>
public int? IsLight { get; set; }
2024-09-23 11:54:56 +08:00
2024-11-04 10:15:34 +08:00
public string CreatedBy { get; set; }
2024-09-23 11:54:56 +08:00
2024-11-04 10:15:34 +08:00
public DateTime? CreatedTime { get; set; }
2024-09-23 11:54:56 +08:00
2024-11-04 10:15:34 +08:00
public string UpdatedBy { get; set; }
2024-09-23 11:54:56 +08:00
2024-11-04 10:15:34 +08:00
public DateTime? UpdatedTime { get; set; }
}
/// <summary>
/// 料架表零件号聚合结果
/// </summary>
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;
}