using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Syc.Abp.Domain.Event { /// /// MES 发布捻丝排产 /// public class MESPublishtWistingArrangeDto { /// /// 排产单号 /// public string Code { get; set; } /// /// 部门编号 /// public string Department { get; set; } /// /// 设备编号 /// public string DeviceCode { get; set; } /// /// 生产单号 /// public string ProductionOrderCode { get; set; } /// /// 客户名 /// public string CustomerName { get; set; } /// /// 品种规格 /// public string Specification { get; set; } /// /// 原丝数量 /// public int RawYarnQuantity { get; set; } /// /// 纸管颜色 /// public string TubeColor { get; set; } /// /// 铜管颜色 /// public string SpindleColor { get; set; } /// /// 计划数量 /// public int PlannedQuantity { get; set; } } }