wanshenmean
2024-11-11 021edcd84d6601249e008141b3027549f864155f
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
45
46
47
48
49
50
51
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 ParamVersion { get; set; }
 
        /// <summary>
        /// 是否需要读取参数
        /// </summary>
        public bool ParamRefreshFlag { get; set; }
 
        /// <summary>
        /// 参数信息数组
        /// </summary>
        public List<ParameterInfoDto> ParameterInfo { get; set; } = new List<ParameterInfoDto>();
    }
 
 
}