lyh
5 天以前 54f239669575cedfdbdf28e38d0e9619a610bf95
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
package org.jeecg.modules.mdc.dto;
 
 
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import org.jeecg.common.aspect.annotation.Dict;
 
import java.math.BigDecimal;
import java.util.Date;
@Data
public class MdcEquipmentPunchExportDTO {
 
 
    @ApiModelProperty(value = "设备编号")
    private String equipmentId;
 
 
    @ApiModelProperty(value = "打卡用户")
    @Dict(dicCode = "id", dictTable = "sys_user", dicText = "realname")
    private String punchUser;
 
 
    @ApiModelProperty(value = "上班时间")
    private Date checkInTime;
    /**
     * 下班时间
     */
 
    @ApiModelProperty(value = "下班时间")
    private Date checkOutTime;
    /**
     * 记录日期
     */
 
    @ApiModelProperty(value = "记录日期")
    private String recordDate;
 
 
    @ApiModelProperty(value = "班次")
    @Dict(dicCode = "shift_schedule")
    private Integer shiftSchedule;
 
 
    @ApiModelProperty(value = "是否缺卡")
    private Integer isAbsent;
 
 
    @ApiModelProperty(value = "是否迟到")
    private Integer isLate;
 
 
    @ApiModelProperty(value = "是否早退")
    private Integer isEarly;
 
 
    /**
     * 早班上班打卡率
     */
 
 
    @ApiModelProperty(value = "早班上班打卡率")
    private BigDecimal morningShiftInRate;
 
    /**
     * 晚班上班打卡率
     */
 
    @ApiModelProperty(value = "晚班上班打卡率")
    private BigDecimal eveningShiftInRate;
 
 
    @ApiModelProperty(value = "早班下班打卡率")
    private BigDecimal morningShiftOutRate;
 
 
    @ApiModelProperty(value = "晚班下班打卡率")
    private BigDecimal eveningShiftOutRate;
 
 
    @ApiModelProperty(value = "白班上班打卡设备数量")
    private Integer morningShiftInDeviceNum;
 
 
    @ApiModelProperty(value = "白班下班打卡设备数量")
    private Integer morningShiftOutDeviceNum;
 
 
    @ApiModelProperty(value = "夜班上班打卡设备数量")
    private Integer eveningShiftInDeviceNum;
 
    @ApiModelProperty(value = "夜班下班打卡设备数量")
    private Integer eveningShiftOutDeviceNum;
 
    @ApiModelProperty(value = "设备总数")
    private Integer deviceCountNum;
 
    private String punchUserRealName;
}