2026-07-09 d41fe2e95f3f64c6e3a7229acd9e74e673513a0a
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
package cn.iocoder.yudao.module.hrm.controller.admin.attendance.vo;
 
import cn.iocoder.yudao.framework.common.pojo.PageParam;
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.Data;
import lombok.EqualsAndHashCode;
import lombok.ToString;
 
import java.time.LocalDate;
 
@Schema(description = "管理后台 - 考勤记录分页 Request VO")
@Data
@EqualsAndHashCode(callSuper = true)
@ToString(callSuper = true)
public class HrmAttendanceRecordPageReqVO extends PageParam {
 
    @Schema(description = "员工ID", example = "1")
    private Long userId;
 
    @Schema(description = "部门ID", example = "1")
    private Long deptId;
 
    @Schema(description = "开始日期", example = "2024-01-01")
    private LocalDate startDate;
 
    @Schema(description = "结束日期", example = "2024-01-31")
    private LocalDate endDate;
 
    @Schema(description = "上班打卡类型", example = "1")
    private Integer clockInType;
 
    @Schema(description = "下班打卡类型", example = "1")
    private Integer clockOutType;
 
}