Merge branch 'dev/dev_xp' into dev/dev

This commit is contained in:
2024-12-19 14:04:28 +08:00
8 changed files with 27 additions and 10 deletions

View File

@@ -8,7 +8,7 @@ import java.util.List;
public interface PaymentInfoMapper extends BaseMapper<PaymentInfo> {
List<OrderListVO> selectPageOrderList(Long accountId, String startTime, String endTime, int offset, int pageSize);
List<OrderListVO> selectPageOrderList(Long accountId, String startTime, String endTime, int offset, int pageSize, Long id);
int queryOrderListTotalCount(Long accountId, String startTime, String endTime);
int queryOrderListTotalCount(Long accountId, String startTime, String endTime, Long id);
}