Files
sy_hx_pbl_backend/DOAN.Model/PBL/Dto/StoragelocationDto.cs
2024-11-01 17:00:01 +08:00

52 lines
1.1 KiB
C#

namespace DOAN.Model.PBL.Dto
{
/// <summary>
/// 料架表查询对象
/// </summary>
public class StoragelocationQueryDto : PagerInfo
{
public string Partnumber { get; set; }
public string RackCode { get; set; }
}
/// <summary>
/// 料架表输入输出对象
/// </summary>
public class StoragelocationDto
{
[Required(ErrorMessage = "Id不能为空")]
public int Id { get; set; }
public string RackCode { get; set; }
public int LayerNum { get; set; }
public string Partnumber { get; set; }
/// <summary>
/// 最大容量
/// </summary>
public int MaxCapacity { get; set; }
public int? PackageNum { get; set; }
/// <summary>
/// 箱子数
/// </summary>
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; }
}
}