|
@@ -81,6 +81,10 @@ public class AccountManagementServiceImpl extends ServiceImpl<AccountManagementM
|
|
|
wrapper.in(AccountManagement::getCompanyId, SecurityUtils.getCompanyIds());
|
|
|
wrapper.eq(AccountManagement::getCompanyId, dto.getCompanyId());
|
|
|
|
|
|
+ //对公 对私账户过滤
|
|
|
+ wrapper.eq(AccountManagement::getType, dto.getType());
|
|
|
+
|
|
|
+
|
|
|
Page<AccountManagementVo> page = baseMapper.getPage(dto.getPage(), wrapper);
|
|
|
List<AccountManagementVo> records = page.getRecords();
|
|
|
//赋值归属公司名称
|