领胜LDS 键盘AOI检测项目
xcd
2020-07-16 3ae459e2e79e567dfd4a552a3b5b8c1fce495167
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
 
using System;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
 
namespace Bro.M071.Model.Model
{
    /// <summary>
    /// 键单元 的检测结果
    /// </summary>
    public class KeyUnitData : BaseModel
    {
        /// <summary>
        /// 产品测量记录Id
        /// </summary>
        [StringLength(64)]
        public string ProductionMeasurementRecordsId { get; set; }
 
        /// <summary>
        /// 键单元
        /// </summary>
        [StringLength(64)]
        public string Key { get; set; }
 
        /// <summary>
        /// 检测项
        /// </summary>
        [StringLength(64)]
        public string MeasurementItem { get; set; }
 
        /// <summary>
        /// 该键 检测项 的值
        /// </summary>
        [StringLength(64)]
        public string ItemValue { get; set; }
 
        /// <summary>
        /// 产品编码
        /// </summary>
        [NotMapped]
        public string ProductionCode { get; set; }
        [NotMapped]
        public string ProductionBarcode { get; set; }
    }
 
    public class KeyUnitDataRequest : BaseRequest
    {
    }
 
    public class KeyUnitData_DTO
    {
        public string Id { get; set; }
 
        /// <summary>
        /// 产品测量记录Id
        /// </summary>
        public string ProductionMeasurementRecordsId { get; set; }
 
        /// <summary>
        /// 键单元
        /// </summary>
        public string Key { get; set; }
 
        /// <summary>
        /// 检测项
        /// </summary>
        public string MeasurementItem { get; set; }
 
        /// <summary>
        /// 该键 检测项 的值
        /// </summary>
        public string ItemValue { get; set; }
 
        /// <summary>
        /// 产品编码
        /// </summary>
        public string ProductionCode { get; set; }
 
        public string ProductionBarcode { get; set; }
    }
 
}