schangxiang@126.com
2024-06-11 bc42866b302006865a605da028a447592b5dbda9
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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
using iWare.Wms.Core.Util.LowCode.Dto;
using System;
 
namespace iWare.Wms.Application
{
    /// <summary>
    /// 设备运行历史输出参数
    /// </summary>
    public class EquipmentWorkingLogDto
    {
        /// <summary>
        /// 字典类型Id
        /// </summary>
        public string EquipmentBaseInfoEquipmentName { get; set; }
        
        /// <summary>
        /// 字典类型Id
        /// </summary>
        public long EquipId { get; set; }
        
        /// <summary>
        /// 设备编号
        /// </summary>
        public string EquipmentID { get; set; }
        
        /// <summary>
        /// 开机时间
        /// </summary>
        public DateTime StartUpTime { get; set; }
        
        /// <summary>
        /// 关机时间
        /// </summary>
        public DateTime ShutDownTime { get; set; }
        
        /// <summary>
        /// 故障开始时间
        /// </summary>
        public DateTime FailureStartTime { get; set; }
        
        /// <summary>
        /// 故障结束时间
        /// </summary>
        public DateTime FailureEndTime { get; set; }
        
        /// <summary>
        /// 故障代码
        /// </summary>
        public string FailureType { get; set; }
        
        /// <summary>
        /// 故障文本
        /// </summary>
        public string FailureMsg { get; set; }
        
        /// <summary>
        /// 开始换刀时间
        /// </summary>
        public DateTime KnifeToolChangeStartTime { get; set; }
        
        /// <summary>
        /// 结束换刀时间
        /// </summary>
        public DateTime KnifeToolChangeEndTime { get; set; }
        
        /// <summary>
        /// 切换手动时间
        /// </summary>
        public DateTime ToggleManualTime { get; set; }
        
        /// <summary>
        /// 切换自动时间
        /// </summary>
        public DateTime ToggleAutoTime { get; set; }
        
        /// <summary>
        /// 工件履历ID
        /// </summary>
        public long WorkPieceLogID { get; set; }
        
        /// <summary>
        /// 设备所属工序
        /// </summary>
        public string WorkingProcedure { get; set; }
        
        /// <summary>
        /// 设备信息变更点
        /// </summary>
        public string MonitoringPoint { get; set; }
        
        /// <summary>
        /// 设备信息变更时生产工件号
        /// </summary>
        public string WorkPieceID { get; set; }
        
        /// <summary>
        /// 备注
        /// </summary>
        public string Remarks { get; set; }
        
        /// <summary>
        /// 履历信息新增时间
        /// </summary>
        public DateTime LogAddTime { get; set; }
        
        /// <summary>
        /// Id主键
        /// </summary>
        public long Id { get; set; }
        
    }
}