48 lines
1.1 KiB
C#
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; }
|
|
|
|
|
|
|
|
}
|
|
} |