New file |
| | |
| | | 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; |
| | | @ApiModelProperty("登陆人名称 前端忽略") |
| | | private String userName; |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | } |