解决开启强审核之后账户流水计算的bug

This commit is contained in:
jishenghua
2024-06-12 00:22:15 +08:00
parent acd8429c81
commit 8ba07e02d1
4 changed files with 50 additions and 12 deletions

View File

@@ -378,20 +378,20 @@ public class AccountService {
}
public List<AccountVo4InOutList> findAccountInOutList(Long accountId, String number, String beginTime, String endTime,
Integer offset, Integer rows) throws Exception{
Boolean forceFlag, Integer offset, Integer rows) throws Exception{
List<AccountVo4InOutList> list=null;
try{
list = accountMapperEx.findAccountInOutList(accountId, number, beginTime, endTime, offset, rows);
list = accountMapperEx.findAccountInOutList(accountId, number, beginTime, endTime, forceFlag, offset, rows);
}catch(Exception e){
JshException.readFail(logger, e);
}
return list;
}
public int findAccountInOutListCount(Long accountId, String number, String beginTime, String endTime) throws Exception{
public int findAccountInOutListCount(Long accountId, String number, String beginTime, String endTime, Boolean forceFlag) throws Exception{
int result=0;
try{
result = accountMapperEx.findAccountInOutListCount(accountId, number, beginTime, endTime);
result = accountMapperEx.findAccountInOutListCount(accountId, number, beginTime, endTime, forceFlag);
}catch(Exception e){
JshException.readFail(logger, e);
}