using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.Linq; using System.Text; using System.Threading.Tasks; namespace iWare.Wms.Application { /// /// 手动出库管理输出类 /// public class ExManualWarehouseInput { /// /// 库位编码 /// [Required(ErrorMessage = "库位编码不能为空")] public string Placecode { get; set; } /// /// 容器编号 /// [Required(ErrorMessage = "容器编号不能为空")] public string Containercode { get; set; } } /// /// PDA手动出库管理输出类 /// public class ExManualPDAInput { /// /// 容器编号 /// [Required(ErrorMessage = "容器编号不能为空")] public string Containercode { get; set; } } /// /// 自动出库管理输出类 /// public class ExAutoWarehouseInput { /// /// 库位编码 /// [Required(ErrorMessage = "库位编码不能为空")] public string Placecode { get; set; } /// /// 容器编号 /// [Required(ErrorMessage = "容器编号不能为空")] public string Containercode { get; set; } /// /// 出库口 /// [Required(ErrorMessage = "出库空不能为空")] public string Entrance { get; set; } } }