liyong
9 天以前 88e384da863bb2f7324cb1e1474885df3b7cce91
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
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;
 
@Schema(description = "管理后台 - 考勤统计汇总分页 Request VO")
@Data
@EqualsAndHashCode(callSuper = true)
@ToString(callSuper = true)
public class HrmAttendanceSummaryPageReqVO extends PageParam {
 
    @Schema(description = "员工ID", example = "1")
    private Long userId;
 
    @Schema(description = "部门ID", example = "1")
    private Long deptId;
 
    @Schema(description = "年月,格式:yyyy-MM", example = "2024-01")
    private String yearMonth;
 
}