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

pull/645/head
Hugh Gao 2019-10-21 14:49:17 +08:00
parent 0640f0b421
commit ac891d81ab
1 changed files with 3 additions and 0 deletions

View File

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