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
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 HrmAttendanceHolidayPageReqVO extends PageParam {
 
    @Schema(description = "节假日名称", example = "春节")
    private String name;
 
    @Schema(description = "类型:1-休息日,2-工作日", example = "1")
    private Integer type;
 
    @Schema(description = "开始日期", example = "2024-01-01")
    private LocalDate startDate;
 
    @Schema(description = "结束日期", example = "2024-12-31")
    private LocalDate endDate;
 
}