给账户流水接口增加筛选条件

This commit is contained in:
jishenghua
2024-05-31 00:46:03 +08:00
parent cfc25b4f5e
commit 85a0b21960
4 changed files with 144 additions and 12 deletions

View File

@@ -69,11 +69,17 @@ public interface AccountMapperEx {
List<AccountVo4InOutList> findAccountInOutList(
@Param("accountId") Long accountId,
@Param("number") String number,
@Param("beginTime") String beginTime,
@Param("endTime") String endTime,
@Param("offset") Integer offset,
@Param("rows") Integer rows);
int findAccountInOutListCount(
@Param("accountId") Long accountId);
@Param("accountId") Long accountId,
@Param("number") String number,
@Param("beginTime") String beginTime,
@Param("endTime") String endTime);
int batchDeleteAccountByIds(@Param("updateTime") Date updateTime, @Param("updater") Long updater, @Param("ids") String ids[]);