| | |
| | | * |
| | | * @author ruoyi |
| | | */ |
| | | @JsonInclude(JsonInclude.Include.NON_NULL)//该注解过滤为空的字段 |
| | | //@JsonInclude(JsonInclude.Include.NON_NULL)//该注解过滤为空的字段 |
| | | public class BaseEntity implements Serializable |
| | | { |
| | | private static final long serialVersionUID = 1L; |
| | |
| | | |
| | | /** 请求参数 */ |
| | | @JsonInclude(JsonInclude.Include.NON_EMPTY) |
| | | @ApiModelProperty(value = "动态参数", name = "params", notes = "根据不同的查询字段自由配置参数") |
| | | private Map<String, Object> params; |
| | | @ApiModelProperty(value = "页码", name = "pageNum", notes = "页码", required = true) |
| | | |
| | | private Integer pageNum; |
| | | @ApiModelProperty(value = "页大小", name = "pageSize", notes = "页大小", required = true) |
| | | |
| | | private Integer pageSize; |
| | | |
| | | public Integer getPageNum() { |