add 新增 查询充电优免订单接口

This commit is contained in:
Lemon
2025-06-11 08:52:30 +08:00
parent c1b67f105f
commit d080b70373
7 changed files with 115 additions and 9 deletions

View File

@@ -1,6 +1,7 @@
package com.jsowell.pile.mapper;
import com.jsowell.pile.domain.CarCouponRecord;
import com.jsowell.pile.vo.uniapp.customer.ParkingOrderVO;
import org.apache.ibatis.annotations.Param;
import org.springframework.stereotype.Repository;
@@ -68,4 +69,11 @@ public interface CarCouponRecordMapper {
* @return
*/
CarCouponRecord selectCarCouponRecord(@Param("orderCode") String orderCode);
/**
* 通过memberId查询充电优免订单
* @param memberId
* @return
*/
List<ParkingOrderVO> queryParkingOrderList(@Param("memberId") String memberId);
}