抛光仓库配置

This commit is contained in:
2024-10-10 17:38:43 +08:00
parent 9f4ba1a788
commit 4fdd6272a7
5 changed files with 342 additions and 0 deletions

View File

@@ -0,0 +1,48 @@
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; }
}
}