无关风月
3 天以前 acb3bc29c9a844049c417840cbfb6b9280c238b0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
package com.ruoyi.system.query;
 
import com.ruoyi.common.core.domain.BasePage;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
@Data
@ApiModel(value = "案件分类分页列表query")
public class CaseMainListQuery extends BasePage {
 
 
    @ApiModelProperty(value = "分类名称")
    private Integer typeId;
    @ApiModelProperty(value = "案件名称")
    private String caseName;
    @ApiModelProperty(value = "年份")
    private String caseYear;
    @ApiModelProperty(value = "更新时间开始 yyyy-MM-dd HH:mm:ss")
    private String startTime;
    @ApiModelProperty(value = "更新时间结束 yyyy-MM-dd HH:mm:ss")
    private String endTime;
}