using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace WIDESEAWCS_DTO.PackInfo { /// /// MES成品入库接收实体 /// public class MESProPackInfoDTO { /// /// 物料条码 /// public string BarCode { get; set; } /// /// 物料编码 /// /// 工单号 /// public string ProductOrderNo { get; set; } /// /// 加工中心编码(机台) /// public string MakeCode { get; set; } /// /// 箱长 /// public decimal Length { get; set; } /// /// 箱宽 /// public decimal Width { get; set; } /// /// 箱高 /// public decimal Height { get; set; } /// /// 状态 /// public int MESProInStatus { get; set; } } }