|
@ -158,9 +158,9 @@ public class ExternalAppServiceImpl implements ExternalAppService { |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
@Override |
|
|
@Override |
|
|
public PageData<ExternalAppResultDTO> listPage(Integer pageNo, Integer pageSize, String customerId) { |
|
|
public PageData<ExternalAppResultDTO> listPage(Integer pageNo, Integer pageSize, String customerId, String customerType) { |
|
|
PageHelper.startPage(pageNo, pageSize); |
|
|
PageHelper.startPage(pageNo, pageSize); |
|
|
List<ExternalAppResultDTO> list = externalAppDao.list(customerId); |
|
|
List<ExternalAppResultDTO> list = externalAppDao.list(customerId, customerType); |
|
|
for (ExternalAppResultDTO app : list) { |
|
|
for (ExternalAppResultDTO app : list) { |
|
|
// 设置客户类型中文
|
|
|
// 设置客户类型中文
|
|
|
app.setCustomerTypeName(CustomerTypeEnum.getName(app.getCustomerType())); |
|
|
app.setCustomerTypeName(CustomerTypeEnum.getName(app.getCustomerType())); |
|
|