com.gccloud.starter.common.dto.SearchDTO Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gc-starter-common Show documentation
Show all versions of gc-starter-common Show documentation
几乎所有的模块都依赖该模块,该模块中引入了一些常用工具类、通用的bean、全局异常处理、常量定义等
package com.gccloud.starter.common.dto;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
/**
* 查询DTO,其他查询可以继承该类实现查询条件扩展
*
* @Author maoshufeng
* @Date 2020-06-13 15:08
* @Version 1.0
*/
@Data
@ApiModel
public class SearchDTO {
@ApiModelProperty(notes = "当前显示页数")
private Integer current;
@ApiModelProperty(notes = "每页展示数据条数")
private Integer size;
@ApiModelProperty(notes = "查询条件")
private String searchKey;
}