using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace WIDESEA_DTO.MOM { /// /// 入库 /// public class ResponeAgingInputDto : BasicResult { /// /// 料框属性,用于标识料框的唯一属性。 /// public string TrayBarcodeProperty { get; set; } /// /// 工单编码或产品型号,用于关联具体的生产任务。 /// public string BindCode { get; set; } /// /// 生产产线 /// public string ProductionLine { get; set; } /// /// 关联工序返回时间,记录注液或静置时长。 /// public string LinedProcessFeedbackTime { get; set; } /// /// 特征参数返回(静置时长) /// public string SpecialParameterDuration { get; set; } /// /// 单位 /// public string UomCode { get; set; } } }