using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.Linq; using System.Text; using System.Threading.Tasks; namespace WCS.Service.Entity { public class I_WCS_MergeinfoRequest { /// /// 容器编号 /// //[Required(ErrorMessage = "{0} 不可为空")] public string ContainerBarCode { get; set; } /// /// 容器类型 /// //[Required(ErrorMessage = "{0} 不可为空")] public int ContainerType { get; set; } /// /// 物料条码 /// public string MatBarCode { get; set; } /// /// 仓库编码 /// //[Required(ErrorMessage = "{0} 不可为空")] public string WareHouseId { get; set; } /// /// 设备编号 /// [Required(ErrorMessage = "{0} 不可为空")] public string EquipmentNo { get; set; } /// /// 目标位置 /// public string EndPostion { get; set; } /// /// 货叉(直接申请货位使用) /// public int ForkNum { get; set; } public string Memo1 { get; set; } public string Memo2 { get; set; } public string Memo3 { get; set; } public string Memo4 { get; set; } //[SwaggerIgnore] //public string WcsBusinessType { get; set; } //[SwaggerIgnore] //public string WarehouseDocumentCode { get; set; } //[SwaggerIgnore] //public string WarehouseDocumentType { get; set; } //[SwaggerIgnore] //public string WarehouseDocumentDetailIds { get; set; } //[SwaggerIgnore] //public string ProductionLine { get; set; } //[SwaggerIgnore] //public long InterfaceDocId { get; set; } //[SwaggerIgnore] public string TaskGroupKey { get; set; } } }