Files
shgx_tz_mes_backend_sync/ZR.Model/MES/wms/Dto/WmPolishWarehouseDto.cs
2024-10-10 17:39:04 +08:00

48 lines
1.1 KiB
C#

using System.ComponentModel.DataAnnotations;
namespace ZR.Model.MES.wms.Dto
{
/// <summary>
/// 三楼抛光仓库查询对象
/// </summary>
public class WmPolishWarehouseQueryDto : PagerInfo
{
public string Location { get; set; }
public string Remark { get; set; }
}
/// <summary>
/// 三楼抛光仓库输入输出对象
/// </summary>
public class WmPolishWarehouseDto
{
[Required(ErrorMessage = "主键不能为空")]
public int Id { get; set; }
[Required(ErrorMessage = "库位不能为空")]
public string Location { get; set; }
public int? PartCapacity { get; set; }
public int? TankCapacity { get; set; }
public int? BuildCapacity { get; set; }
public int? BoxPartNum { get; set; }
public string StorePartList { get; set; }
public string Remark { get; set; }
public string CreatedBy { get; set; }
public DateTime? CreatedTime { get; set; }
public string UpdatedBy { get; set; }
public DateTime? UpdatedTime { get; set; }
}
}