Commit 27e34c2f authored by RuoYi's avatar RuoYi

忽略不必要的属性数据返回

parent 836180fe
......@@ -5,6 +5,7 @@ import java.util.Date;
import java.util.HashMap;
import java.util.Map;
import com.fasterxml.jackson.annotation.JsonFormat;
import com.fasterxml.jackson.annotation.JsonIgnore;
/**
* Entity基类
......@@ -16,6 +17,7 @@ public class BaseEntity implements Serializable
private static final long serialVersionUID = 1L;
/** 搜索值 */
@JsonIgnore
private String searchValue;
/** 创建者 */
......@@ -36,6 +38,7 @@ public class BaseEntity implements Serializable
private String remark;
/** 请求参数 */
@JsonIgnore
private Map<String, Object> params;
public String getSearchValue()
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment