ReportDetailResponseVo.java
670 Bytes
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
package com.ruoyi.pojo.response;
import io.swagger.annotations.ApiModel;
import lombok.Data;
import java.util.Date;
/**
* @author 20412
*/
@Data
@ApiModel("签到报表查看详情vo")
public class ReportDetailResponseVo {
private String name;
private String posts;
private String lineName;
private String lpName;
/**
* 计划操作
*/
private String planAction;
/**
* 实际操作
*/
private String actualAction;
/**
* 是否酒精测试
*/
private Boolean alcoholFlag;
/**
* 签到时间
*/
private Date createTime;
/**
* 原因
*/
private String remark;
}