using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using WIDESEA_Core.Attributes; namespace WIDESEA_DTO.ERP { /// /// 生管排程接收实体 /// public class SGOutOrderDTO { /// /// 主排程Id /// [PropertyValidate("主排程Id", NotNullAndEmpty = true)] public int BoardMpsId { get; set; } /// /// 排程明细ID /// [PropertyValidate("排程明细ID", NotNullAndEmpty = true)] public int BoardMpsDetailId { get; set; } /// /// 幅宽 /// [PropertyValidate("幅宽", NotNullAndEmpty = true)] public decimal Width { get; set; } /// /// 需求长度 /// [PropertyValidate("需求长度", NotNullAndEmpty = true)] public decimal XqLen { get; set; } /// /// 总用量 /// [PropertyValidate("总用量", NotNullAndEmpty = true)] public decimal TotalUsage { get; set; } /// /// 物料来源ID(上游) /// [PropertyValidate("物料ID", NotNullAndEmpty = true)] public int MaterialId { get; set; } /// /// 物料编号 /// [PropertyValidate("物料编号", NotNullAndEmpty = true)] public string MaterialNo { get; set; } /// /// 采购长度 /// [PropertyValidate("采购长度", NotNullAndEmpty = true)] public decimal ProcurementLength { get; set; } /// /// 楞别 /// [PropertyValidate("楞别", NotNullAndEmpty = true)] public string BoardFluteNo { get; set; } /// /// 机台位置 /// [PropertyValidate("机台位置", NotNullAndEmpty = true)] public string MachineName { get; set; } /// /// 客户简称 /// [PropertyValidate("客户简称", NotNullAndEmpty = true)] public string ShortName { get; set; } /// /// 总长 /// [PropertyValidate("总长", NotNullAndEmpty = true)] public decimal TotalLenth { get; set; } /// /// 生产工单号(上游) /// [PropertyValidate("生产工单号", NotNullAndEmpty = true)] public string OrderId { get; set; } } }