kaiyu
2021-03-17 466ee3bc7c7bccf1e74ba46289900e24e6784d7b
screen-manage/src/main/java/com/moral/api/pojo/vo/account/AccountVO.java
@@ -18,8 +18,10 @@
 **/
@Data
@JsonInclude(JsonInclude.Include.NON_EMPTY)
public class AccountVO {
    private String code;
    private Integer id;
    private String userName;
@@ -29,8 +31,6 @@
    private String mobile;
    private String wechat;
    private String isDelete;
    private List<String> roleNames;
@@ -47,7 +47,6 @@
        vo.setEmail(account.getEmail());
        vo.setMobile(account.getMobile());
        vo.setWechat(account.getWechat());
        vo.setIsDelete(account.getIsDelete());
        vo.setRoleNames(roleNames);
        return vo;
    }