2026-01-17 16:33:12 +08:00
|
|
|
package com.jsowell.pile.service;
|
|
|
|
|
|
2026-03-20 09:21:41 +08:00
|
|
|
import com.jsowell.common.core.page.PageResponse;
|
2026-01-17 16:33:12 +08:00
|
|
|
import com.jsowell.pile.dto.MerchantOrderReportDTO;
|
2026-03-20 09:21:41 +08:00
|
|
|
import com.jsowell.pile.dto.ParkingCouponRecordQueryDTO;
|
2026-01-19 10:11:22 +08:00
|
|
|
import com.jsowell.pile.vo.web.MerchantOrderReportVO;
|
2026-03-20 09:21:41 +08:00
|
|
|
import com.jsowell.pile.vo.web.ParkingCouponRecordVO;
|
2026-01-17 16:33:12 +08:00
|
|
|
|
|
|
|
|
public interface BusinessFinancialService {
|
2026-01-19 10:11:22 +08:00
|
|
|
MerchantOrderReportVO getMyWallet(MerchantOrderReportDTO dto);
|
2026-03-20 09:21:41 +08:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 分页查询停车优免记录
|
|
|
|
|
*
|
|
|
|
|
* @param dto 查询条件
|
|
|
|
|
* @return 分页结果
|
|
|
|
|
*/
|
|
|
|
|
PageResponse queryParkingCouponRecords(ParkingCouponRecordQueryDTO dto);
|
2026-01-17 16:33:12 +08:00
|
|
|
}
|