ReportDetailResponseVo.java
1 KB
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
package com.ruoyi.pojo.response;
import io.swagger.annotations.ApiModel;
import lombok.Data;
import java.math.BigDecimal;
import java.util.Date;
/**
* @author 20412
*/
@Data
@ApiModel("签到报表查看详情vo")
public class ReportDetailResponseVo {
private Long id;
private String jobCode;
private String name;
private String posts;
private String lineName;
private String lpName;
private String fleetName;
private String nbbm;
private String exString;
private String siteName;
private Integer exType;
private BigDecimal alcoholIntake;
private Date scheduleDate;
/**
* 计划操作
*/
private String planAction;
/**
* 实际操作
*/
private String actualAction;
/**
* 打卡时间
*/
private Date planTime;
/**
* 实际打卡时间
*/
private Date actualTime;
/**
* 原因
*/
private String remark;
/**
* 是否酒精测试
*/
private String alcoholString;
}