using System.ComponentModel.DataAnnotations; namespace ZR.Model.MES.wms.Dto { /// /// 三楼抛光仓库查询对象 /// public class WmPolishWarehouseQueryDto : PagerInfo { public string Location { get; set; } public string Remark { get; set; } } /// /// 三楼抛光仓库输入输出对象 /// 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; } } }