抛光仓库配置
This commit is contained in:
48
ZR.Model/MES/wms/Dto/WmPolishWarehouseDto.cs
Normal file
48
ZR.Model/MES/wms/Dto/WmPolishWarehouseDto.cs
Normal 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; }
|
||||
|
||||
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user