‘liusuyi’
2023-07-22 ef2c3b3e0dbd683dfd75b55eb538914eecd2b6fa
ruoyi-common/src/main/java/com/ruoyi/common/core/domain/BaseEntity.java
@@ -14,7 +14,7 @@
 * 
 * @author ruoyi
 */
@JsonInclude(JsonInclude.Include.NON_NULL)//该注解过滤为空的字段
//@JsonInclude(JsonInclude.Include.NON_NULL)//该注解过滤为空的字段
public class BaseEntity implements Serializable
{
    private static final long serialVersionUID = 1L;
@@ -48,11 +48,10 @@
    /** 请求参数 */
    @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() {