Commit ac891d81 by Hugh Gao

返回前端数据去除密码与盐

parent 0640f0b4
...@@ -3,6 +3,7 @@ package org.jeecg.modules.system.entity; ...@@ -3,6 +3,7 @@ package org.jeecg.modules.system.entity;
import java.util.Date; import java.util.Date;
import com.baomidou.mybatisplus.annotation.TableLogic; import com.baomidou.mybatisplus.annotation.TableLogic;
import com.fasterxml.jackson.annotation.JsonIgnore;
import org.jeecg.common.aspect.annotation.Dict; import org.jeecg.common.aspect.annotation.Dict;
import org.jeecgframework.poi.excel.annotation.Excel; import org.jeecgframework.poi.excel.annotation.Excel;
import org.springframework.format.annotation.DateTimeFormat; import org.springframework.format.annotation.DateTimeFormat;
...@@ -53,11 +54,13 @@ public class SysUser implements Serializable { ...@@ -53,11 +54,13 @@ public class SysUser implements Serializable {
/** /**
* 密码 * 密码
*/ */
@JsonIgnore
private String password; private String password;
/** /**
* md5密码盐 * md5密码盐
*/ */
@JsonIgnore
private String salt; private String salt;
/** /**
......
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