新增 查询停车优免信息列表接口

This commit is contained in:
Lemon
2026-03-20 09:21:41 +08:00
parent 89efe8b2a9
commit c14def6a39
5 changed files with 187 additions and 0 deletions

View File

@@ -1,7 +1,9 @@
package com.jsowell.pile.mapper;
import com.jsowell.pile.domain.CarCouponRecord;
import com.jsowell.pile.dto.ParkingCouponRecordQueryDTO;
import com.jsowell.pile.vo.uniapp.customer.ParkingOrderVO;
import com.jsowell.pile.vo.web.ParkingCouponRecordVO;
import org.apache.ibatis.annotations.Param;
import org.springframework.stereotype.Repository;
@@ -76,4 +78,12 @@ public interface CarCouponRecordMapper {
* @return
*/
List<ParkingOrderVO> queryParkingOrderList(@Param("memberId") String memberId);
/**
* 分页查询停车优免记录(联表查询站点名称和优免信息)
*
* @param queryDTO 查询条件
* @return 停车优免记录列表
*/
List<ParkingCouponRecordVO> selectParkingCouponRecordList(ParkingCouponRecordQueryDTO queryDTO);
}