Skip to content

Commit

Permalink
返回前端数据去除密码与盐
Browse files Browse the repository at this point in the history
  • Loading branch information
CowSmiles committed Oct 21, 2019
1 parent 0640f0b commit ac891d8
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
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;
Expand Down Expand Up @@ -53,11 +54,13 @@ public class SysUser implements Serializable {
/**
* 密码
*/
@JsonIgnore
private String password;

/**
* md5密码盐
*/
@JsonIgnore
private String salt;

/**
Expand Down

0 comments on commit ac891d8

Please sign in to comment.