wanshenmean
2024-11-06 98cd144e4d58dbfcc09a2ffb0dbb6925519088b3
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace WIDESEA_DTO.MOM
{
    public class ResponeAgingInputDto : BasicResult
    {
        /// <summary>
        /// 料框属性,用于标识料框的唯一属性。
        /// </summary>
        public string TrayBarcodeProperty { get; set; }
 
        /// <summary>
        /// 工单编码或产品型号,用于关联具体的生产任务。
        /// </summary>
        public string BindCode { get; set; }
 
        /// <summary>
        /// 关联工序返回时间,记录注液或静置时长。
        /// </summary>
        public string LinedProcessFeedbackTime { get; set; }
    }
}