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

46 lines
996 B
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; }
public string CreatedBy { get; set; }
public DateTime? CreatedTime { get; set; }
public string UpdatedBy { get; set; }
public DateTime? UpdatedTime { get; set; }
}
}