liuxiaolong
2019-05-06 a7bed6b4cfecd61ec153818945f982c5bb796b98
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
package com.cloud.attendance.model;
 
import io.swagger.annotations.Api;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
import java.io.Serializable;
import java.util.List;
/**
 * 考勤每月汇总
 * @author wp
 * @data 2018-10-25
 */
@Data
@Api(value = "AttMouthData", description = "多人查询考勤情况汇总表")
public class AttMouthData implements Serializable {
 
    private static final long serialVersionUID = -1438078028040922174L;
 
    @ApiModelProperty(value = "人员id")
    private String perId;
 
    @ApiModelProperty(value = "人员名称")
    private String perName;
 
    @ApiModelProperty(value = "出勤汇总")
    private Integer attendValue;
 
    @ApiModelProperty(value = "迟到汇总")
    private Integer lateValue;
 
    @ApiModelProperty(value = "早退汇总")
    private Integer leaveEarlyValue;
    @ApiModelProperty(value = "请假汇总")
    private Integer isLeave;
 
    @ApiModelProperty(value = "每天汇总情况")
    private List<DayStatus> totalList;
}