按id查询订单

This commit is contained in:
2024-12-19 13:56:17 +08:00
parent 7d8f047087
commit b15cc542e1
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);
}