1
刘磊
2024-11-15 1a02791b12af1c7dc0a7816c9ae60f5ede442de4
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace WIDESEA_DTO.MOM
{
    /// <summary>
    /// 入库
    /// </summary>
    public class ResponeAgingInputDto : BasicResult
    {
        /// <summary>
        /// 料框属性,用于标识料框的唯一属性。
        /// </summary>
        public string TrayBarcodeProperty { get; set; }
 
        /// <summary>
        /// 工单编码或产品型号,用于关联具体的生产任务。
        /// </summary>
        public string BindCode { get; set; }
 
        /// <summary>
        /// 生产产线
        /// </summary>
        public string ProductionLine { get; set; }
 
        /// <summary>
        /// 关联工序返回时间,记录注液或静置时长。
        /// </summary>
        public string LinedProcessFeedbackTime { get; set; }
 
        /// <summary>
        /// 特征参数返回(静置时长)
        /// </summary>
        public string SpecialParameterDuration { get; set; }
 
        /// <summary>
        /// 单位
        /// </summary>
        public string UomCode { get; set; }
    }
}