using System.ComponentModel.DataAnnotations; namespace WCS.WorkEngineering.WebApi.Models.WMS.Request { public class ApplyStockOutTaskRequest { /// /// 出库位置 /// [Required(ErrorMessage = "{0} 不可为空")] public string OutEndPostion { get; set; } /// /// 出库类型(0.无效参数;1.物料出库;2.空托盘出库;3.空工字轮出库;) /// [Required(ErrorMessage = "{0} 不可为空")] public int OutType { get; set; } /// /// 仓库编码 /// [Required(ErrorMessage = "{0} 不可为空")] public string WarehouseCode { get; set; } /// /// 巷道 /// public string Tunnel { get; set; } = ""; /// /// 备用 /// public string Memo1 { get; set; } = ""; /// /// 备用 /// public string Memo2 { get; set; } = ""; } }