package com.ruoyi.common.core.domain; import java.io.Serializable; import java.util.Date; import java.util.HashMap; import java.util.Map; import com.fasterxml.jackson.annotation.JsonFormat; import com.fasterxml.jackson.annotation.JsonIgnore; import com.fasterxml.jackson.annotation.JsonInclude; import io.swagger.annotations.ApiModelProperty; /** * Entity基类 * * @author ruoyi */ @JsonInclude(JsonInclude.Include.NON_NULL)//该注解过滤为空的字段 public class BaseEntity implements Serializable { private static final long serialVersionUID = 1L; /** 搜索值 */ @JsonIgnore @ApiModelProperty(hidden = true) private String searchValue; /** 创建者 */ @ApiModelProperty(hidden = true) private String createBy; /** 创建时间 */ @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss") @ApiModelProperty(hidden = true) private Date createTime; /** 更新者 */ @ApiModelProperty(hidden = true) private String updateBy; /** 更新时间 */ @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss") @ApiModelProperty(hidden = true) private Date updateTime; /** 备注 */ @ApiModelProperty(hidden = true) private String remark; /** 请求参数 */ @JsonInclude(JsonInclude.Include.NON_EMPTY) @ApiModelProperty(value = "动态参数", name = "params", notes = "根据不同的查询字段自由配置参数") private Map params; @ApiModelProperty(value = "页码", name = "pageNum", notes = "页码", required = true) private Integer pageNum; @ApiModelProperty(value = "页大小", name = "pageSize", notes = "页大小", required = true) private Integer pageSize; public Integer getPageNum() { return pageNum; } public void setPageNum(Integer pageNum) { this.pageNum = pageNum; } public Integer getPageSize() { return pageSize; } public void setPageSize(Integer pageSize) { this.pageSize = pageSize; } public String getSearchValue() { return searchValue; } public void setSearchValue(String searchValue) { this.searchValue = searchValue; } public String getCreateBy() { return createBy; } public void setCreateBy(String createBy) { this.createBy = createBy; } public Date getCreateTime() { return createTime; } public void setCreateTime(Date createTime) { this.createTime = createTime; } public String getUpdateBy() { return updateBy; } public void setUpdateBy(String updateBy) { this.updateBy = updateBy; } public Date getUpdateTime() { return updateTime; } public void setUpdateTime(Date updateTime) { this.updateTime = updateTime; } public String getRemark() { return remark; } public void setRemark(String remark) { this.remark = remark; } public Map getParams() { if (params == null) { params = new HashMap<>(); } return params; } public void setParams(Map params) { this.params = params; } }