using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using WIDESEA_Core.Attributes; namespace WIDESEA_DTO.MES { /// /// MES领料自动叫料接收实体 /// [ModelValidate] public class MESAutoIssueDTO { /// /// 出库来源明细ID /// [PropertyValidate("出库来源明细ID", NotNullAndEmpty = true)] public int OutDetailId { get; set; } /// /// 机台余料可用时长 /// [PropertyValidate("机台余料可用时长", NotNullAndEmpty = true)] public int OddsTime { get; set; } /// /// 上料周转位余料数量 /// [PropertyValidate("上料周转位余料数量", NotNullAndEmpty = true)] public decimal OddsQuantity { get; set; } /// /// 周转位置编号 /// [PropertyValidate("周转位置编号", NotNullAndEmpty = true)] public string PointCode { get; set; } /// /// 周转位是否存在空托 /// [PropertyValidate("周转位是否存在空托", NotNullAndEmpty = true)] public int IsEmptyPallet { get; set; } } }