yangys
2024-12-30 7cd413d0f1e3235223848d47e428aad97f9f13fc
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
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
package com.qianwen.smartman.modules.workinghour.vo;
 
import java.time.LocalDateTime;
 
import io.swagger.annotations.ApiModelProperty;
 
/**
 * 零件工时VO
 */
public class PartWorkingHourVO {
    
    long id;
    /**
     * 零件编号
     */
    @ApiModelProperty("零件编号")
    private String partNo;
    
    @ApiModelProperty("工序号")
    private String processNo;
    
    @ApiModelProperty("版次")
    private String version;
    
    @ApiModelProperty("工位id")
    private long workstationId;
    
    @ApiModelProperty("工位名称")
    private String workstationName;
    
    @ApiModelProperty("开始时间")
    private LocalDateTime startTime;
    
    @ApiModelProperty("结束时间")
    private LocalDateTime endTime;
    
    @ApiModelProperty("占机时间(秒)")
    private Long occupancySecs;
    
    @ApiModelProperty("装夹调试时间(秒)")
    private Long clampingSecs;
    
    @ApiModelProperty("首件切削时间(秒)")
    private Long firstWorkingSecs;
    
    @ApiModelProperty("末件拆卸时间(秒)")
    private Long lastRemoveSecs;
    
    @ApiModelProperty("首件计量时间(秒)")
    private Long firstMeasureSecs;
    
    @ApiModelProperty("加工时间(秒)")
    private Long processingSecs;
    
    @ApiModelProperty("准备时间(秒)")
    private Long prepareSecs;
    
    @ApiModelProperty(" 单件工时(秒)")
    private Long singleProcessSecs;
    
    @ApiModelProperty("数量")
    private Long amount;
    
    public long getId() {
        return id;
    }
    public void setId(long id) {
        this.id = id;
    }
    public String getPartNo() {
        return partNo;
    }
    public void setPartNo(String partNo) {
        this.partNo = partNo;
    }
    public String getProcessNo() {
        return processNo;
    }
    public void setProcessNo(String processNo) {
        this.processNo = processNo;
    }
    public String getVersion() {
        return version;
    }
    public void setVersion(String version) {
        this.version = version;
    }
    public long getWorkstationId() {
        return workstationId;
    }
    public void setWorkstationId(long workstationId) {
        this.workstationId = workstationId;
    }
    public LocalDateTime getStartTime() {
        return startTime;
    }
    public void setStartTime(LocalDateTime startTime) {
        this.startTime = startTime;
    }
    public LocalDateTime getEndTime() {
        return endTime;
    }
    public void setEndTime(LocalDateTime endTime) {
        this.endTime = endTime;
    }
    public Long getOccupancySecs() {
        return occupancySecs;
    }
    public void setOccupancySecs(Long occupancySecs) {
        this.occupancySecs = occupancySecs;
    }
    public Long getClampingSecs() {
        return clampingSecs;
    }
    public void setClampingSecs(Long clampingSecs) {
        this.clampingSecs = clampingSecs;
    }
    public Long getFirstWorkingSecs() {
        return firstWorkingSecs;
    }
    public void setFirstWorkingSecs(Long firstWorkingSecs) {
        this.firstWorkingSecs = firstWorkingSecs;
    }
    public Long getLastRemoveSecs() {
        return lastRemoveSecs;
    }
    public void setLastRemoveSecs(Long lastRemoveSecs) {
        this.lastRemoveSecs = lastRemoveSecs;
    }
    public Long getFirstMeasureSecs() {
        return firstMeasureSecs;
    }
    public void setFirstMeasureSecs(Long firstMeasureSecs) {
        this.firstMeasureSecs = firstMeasureSecs;
    }
    public Long getPrepareSecs() {
        return prepareSecs;
    }
    public void setPrepareSecs(Long prepareSecs) {
        this.prepareSecs = prepareSecs;
    }
    public Long getSingleProcessSecs() {
        return singleProcessSecs;
    }
    public void setSingleProcessSecs(Long singleProcessSecs) {
        this.singleProcessSecs = singleProcessSecs;
    }
    public Long getAmount() {
        return amount;
    }
    public void setAmount(Long amount) {
        this.amount = amount;
    }
    public String getWorkstationName() {
        return workstationName;
    }
    public void setWorkstationName(String workstationName) {
        this.workstationName = workstationName;
    }
    public Long getProcessingSecs() {
        return processingSecs;
    }
    public void setProcessingSecs(Long processingSecs) {
        this.processingSecs = processingSecs;
    }
    
    
}