kaiyu
2021-04-23 726b056fc2d3b51acdeb0b5fbaf74c8886acc2ac
screen-manage/src/main/java/com/moral/api/pojo/vo/account/AccountQueryVO.java
@@ -63,7 +63,7 @@
    public static AccountVO convertToQueryPage(AccountDTO dto) {
        if (dto.getAccount() == null)
            return null;
        AccountInsertVO vo = new AccountInsertVO();
        AccountVO vo = new AccountVO();
        ManageAccount account = dto.getAccount();
        List<ManageRole> roles = dto.getRoles();
        if(!ObjectUtils.isEmpty(roles)){
@@ -75,6 +75,7 @@
            });
        }
        vo.setId(account.getId());
        vo.setAccount(account.getAccount());
        vo.setUserName(account.getUserName());
        vo.setEmail(account.getEmail());
        vo.setMobile(account.getMobile());