领胜LDS 键盘AOI检测项目
wells.liu
2020-06-24 533c67339be511fc32e645c450201522ea4d5dfb
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
 
//using System;
//using System.ComponentModel.DataAnnotations;
 
//namespace Bro.M071.Process.Model.Model
//{
//    public class OperationRecords : BaseModel
//    {
//        /// <summary>
//        /// 操作员编号
//        /// </summary>
//        [StringLength(64)]
//        public string UserNO { get; set; }
 
//        /// <summary>
//        ///  操作员生产的批次号
//        /// </summary>
//        [StringLength(64)]
//        public string ProductionBatchNO { get; set; }
 
//        /// <summary>
//        /// 操作开始时间
//        /// </summary>
//        public DateTime OperationStartTime { get; set; }
 
//        /// <summary>
//        /// 操作结束时间
//        /// </summary>
//        public DateTime? OperationEndTime { get; set; }
 
 
//    }
 
//    public class OperationRecordsRequest : BaseRequest
//    {
//        public string UserNO { get; set; }
//        public string ProductionBatchNO { get; set; }
//    }
 
//    public class ProductionStatistics_Dto
//    {
 
//        public OperationRecords OperationRecordsRowData { get; set; }
 
//        public int BatchProductionTotalCount { get; set; }
 
//        public int BatchProductionOKCount { get; set; }
 
//        public int BatchProductionNGCount { get; set; }
 
//        public int BatchProductionTBDCount { get; set; }
 
//        public bool IsSelected { get; set; }
 
//        public ProductionStatistics_Dto()
//        {
 
//        }
//    }
//}