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