1.调整用户列表接口

master
x_z 3 years ago
parent 596c956b63
commit 1d3c7c4d2b

@ -90,6 +90,7 @@ public class AuthAdminController {
.map(AuthRoleAdmin::getRole_id)
.collect(Collectors.toList());
authAdminResponse.setRoles(roles);
authAdminResponse.setCompanyName(customerInfoService.selectCompanyName(authAdminResponse.getCustomerId()));
return authAdminResponse;
}).collect(Collectors.toList());

@ -47,4 +47,9 @@ public class AuthAdminResponse {
//是否客户角色
private Integer isCustomer;
/**
*
*/
private String companyName;
}

@ -1,6 +1,7 @@
package com.glxp.udi.admin.service.auth;
import cn.hutool.core.collection.CollUtil;
import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
import com.baomidou.mybatisplus.core.metadata.IPage;
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
import com.glxp.udi.admin.dao.auth.AuthAdminDao;
@ -66,4 +67,17 @@ public class CustomerInfoService {
return customerInfoDao.selectById(customerId);
}
/**
*
* @param customerId
*/
public String selectCompanyName(long customerId) {
if (110 == customerId) {
return "超级用户";
}
QueryWrapper<CustomerInfoEntity> wrapper = new QueryWrapper<>();
wrapper.select("companyName")
.eq("customerId", customerId);
return customerInfoDao.selectOne(wrapper).getCompanyName();
}
}

Loading…
Cancel
Save