using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace WIDESEA_DTO.Basic { public class FillingOrder { /// /// 品号 /// public string ArticleNum { get; set; } /// /// 品名 /// public string ArticleName { get; set; } /// /// 规格 /// public string Specification { get; set; } /// /// 批号 /// public string batchNum { get; set; } /// /// 条码值 /// public string BarCode { get; set; } /// /// 派工单号 /// public string WorkOrder { get; set; } /// /// 条码数量 /// public float BarNum { get; set; } /// /// 创建时间 /// public string CreationTime { get; set; } /// /// 派工ID /// public int WorkID { get; set; } /// /// 产品包装桶类型 /// public string ProductType { get; set; } /// /// 条码值id /// public int BarCodeID { get; set; } /// /// 品号id /// public int ArticleNumID { get; set; } /// /// 物料名称 /// public string MaterialName { get; set; } /// /// 货区 /// public string WarehouseType { get; set; } /// /// 物料编码 /// public string MaterialCode { get; set; } /// /// 备用1 /// public string Standby1 { get; set; } /// /// 备用2 /// public string Standby2 { get; set; } } }