|
@@ -7,8 +7,6 @@ package org.eco.vip.orm.domain;
|
|
|
|
|
|
|
|
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
|
|
-import com.fasterxml.jackson.annotation.JsonIgnore;
|
|
|
-import com.fasterxml.jackson.annotation.JsonInclude;
|
|
|
import com.fhs.core.trans.anno.Trans;
|
|
|
import com.fhs.core.trans.constant.TransType;
|
|
|
import com.fhs.core.trans.vo.TransPojo;
|
|
@@ -17,12 +15,11 @@ import lombok.Data;
|
|
|
|
|
|
import java.io.Serializable;
|
|
|
import java.util.Date;
|
|
|
-import java.util.HashMap;
|
|
|
-import java.util.Map;
|
|
|
|
|
|
/**
|
|
|
- * @author GaoKunW
|
|
|
* @description 全局基础类
|
|
|
+ *
|
|
|
+ * @author GaoKunW
|
|
|
* @date 2025/3/9 20:30
|
|
|
*/
|
|
|
@Data
|
|
@@ -50,11 +47,9 @@ public class BaseEntity implements Serializable, TransPojo {
|
|
|
private Integer status;
|
|
|
|
|
|
/**
|
|
|
- * 搜索值
|
|
|
+ * 备注
|
|
|
*/
|
|
|
- @JsonIgnore
|
|
|
- @Column(ignore = true)
|
|
|
- private String searchValue;
|
|
|
+ private String remark;
|
|
|
|
|
|
/**
|
|
|
* 创建者
|
|
@@ -92,11 +87,4 @@ public class BaseEntity implements Serializable, TransPojo {
|
|
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
|
|
private Date updateTime;
|
|
|
|
|
|
- /**
|
|
|
- * 请求参数
|
|
|
- */
|
|
|
- @JsonInclude(JsonInclude.Include.NON_EMPTY)
|
|
|
- @Column(ignore = true)
|
|
|
- private Map<String, Object> params = new HashMap<>();
|
|
|
-
|
|
|
}
|