package cn.iocoder.yudao.module.hrm.controller.admin.approval.vo;
|
|
import cn.iocoder.yudao.framework.common.pojo.PageParam;
|
import lombok.Data;
|
import lombok.EqualsAndHashCode;
|
|
import java.time.LocalDate;
|
|
@Data
|
@EqualsAndHashCode(callSuper = true)
|
public class HrmOvertimeApplicationPageReqVO extends PageParam {
|
private String no;
|
private Long userId;
|
private Long deptId;
|
private LocalDate overtimeDate;
|
private Integer overtimeType;
|
private Integer status;
|
}
|