package com.zzg.common.core.domain;
|
|
import com.baomidou.mybatisplus.annotation.FieldFill;
|
import com.baomidou.mybatisplus.annotation.TableField;
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
import com.fasterxml.jackson.annotation.JsonIgnore;
|
import com.fasterxml.jackson.annotation.JsonInclude;
|
import lombok.Data;
|
import org.springframework.format.annotation.DateTimeFormat;
|
|
import java.io.Serializable;
|
import java.util.Date;
|
import java.util.HashMap;
|
import java.util.Map;
|
|
/**
|
* Entity基类
|
*
|
* @author ruoyi
|
*/
|
@Data
|
public class BaseEntity implements Serializable {
|
private static final long serialVersionUID = 1L;
|
|
/**
|
* 搜索值
|
*/
|
@JsonIgnore
|
@TableField(exist = false)
|
private String searchValue;
|
|
/**
|
* 创建者
|
*/
|
@TableField(value = "create_by",fill = FieldFill.INSERT)
|
private String createBy;
|
|
/**
|
* 创建时间
|
*/
|
@TableField(value = "create_time",fill = FieldFill.INSERT)
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
@DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
private Date createTime;
|
|
/**
|
* 更新者
|
*/
|
@TableField(value = "update_by",fill = FieldFill.INSERT_UPDATE)
|
private String updateBy;
|
|
/**
|
* 更新时间
|
*/
|
@TableField(value = "update_time",fill = FieldFill.INSERT_UPDATE)
|
@DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
private Date updateTime;
|
|
|
/**
|
* 备注
|
*/
|
@TableField(exist = false)
|
private String remark;
|
@TableField(exist = false)
|
private Integer page;
|
@TableField(exist = false)
|
private Integer limit;
|
|
|
/**
|
* 请求参数
|
*/
|
@JsonInclude(JsonInclude.Include.NON_EMPTY)
|
@TableField(exist = false)
|
private Map<String, Object> params;
|
|
public Map<String, Object> getParams() {
|
if (params == null) {
|
params = new HashMap<>();
|
}
|
return params;
|
}
|
|
}
|