Compare commits

..

No commits in common. "1c45e9862a80bf23257ceaf7e16f81ca1dbfc18c" and "3f4ed89707bd831eb8d20a1f626278b2ddd82926" have entirely different histories.

2 changed files with 2 additions and 4 deletions

View File

@ -73,8 +73,7 @@ public interface AccInfoMapper extends BaseMapper<AccInfo> {
List<AccInfoDetailsVO> queryAccInfoDetails(@Param("accountInfoQueryParam") AccountInfoQueryParam accountInfoQueryParam,
@Param("encryptedSearchValue") String encryptedSearchValue);
AccInfoDetailsVO queryAccInfoBalanceSum(@Param("accountInfoQueryParam") AccountInfoQueryParam accountInfoQueryParam,
@Param("encryptedSearchValue") String encryptedSearchValue);
AccInfoDetailsVO queryAccInfoBalanceSum(@Param("accountInfoQueryParam") AccountInfoQueryParam accountInfoQueryParam);
void updateAccInfoEndDateByUserId(LocalDate endDate, List<Long> userIds, String updateBy);
List<AccInfoDetailsVO> queryAccInfoByUserIds(@Param("userIds") List<Long> userIds);

View File

@ -309,11 +309,10 @@ public class AccInfoServiceImpl implements IAccInfoService {
}
public AccInfoDetailsVO queryAccInfoBalanceSum(AccountInfoQueryParam accountInfoQueryParam) {
String encryptedSearchValue = SM4EncryptUtils.sm4Encrypt(accountInfoQueryParam.getSearchValue());
if(CollUtil.isEmpty(accountInfoQueryParam.getAccStatusList())) {
accountInfoQueryParam.setAccStatusList(AccStatusEnum.getAllKeys());
}
return accInfoMapper.queryAccInfoBalanceSum(accountInfoQueryParam, encryptedSearchValue);
return accInfoMapper.queryAccInfoBalanceSum(accountInfoQueryParam);
}
@Transactional(rollbackFor = {Exception.class})