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;
|
|
}
|