package com.ruoyi.system.query;
|
|
import com.ruoyi.common.core.domain.BasePage;
|
import io.swagger.annotations.Api;
|
import io.swagger.annotations.ApiModel;
|
import io.swagger.annotations.ApiModelProperty;
|
import lombok.Data;
|
|
import java.util.List;
|
|
@Data
|
@ApiModel(value = "我的审批查询query")
|
public class TExamineAppletQuery extends BasePage {
|
/**
|
* 状态全部不传 1待审批 2已审批 3我发起的
|
*/
|
@ApiModelProperty("状态全部不传 1待审批 2已审批 3我发起的")
|
private Integer status;
|
/**
|
* 时间 1最近1天 2最近7天 3最近30天
|
*/
|
@ApiModelProperty("时间全部不传 1最近1天 2最近7天 3最近30天")
|
private Integer time;
|
/**
|
* 1倒序 2正序 首次默认倒序排
|
*/
|
@ApiModelProperty("1倒序 2正序 首次默认倒序排")
|
private Integer sort;
|
|
|
|
|
|
}
|