配置充电停车优惠

This commit is contained in:
Guoqs
2025-02-19 13:23:49 +08:00
parent 116b122e61
commit 1ccd62735e
5 changed files with 59 additions and 16 deletions

View File

@@ -1,10 +1,11 @@
package com.jsowell.pile.mapper;
import java.util.List;
import com.jsowell.pile.domain.CarCouponRecord;
import org.apache.ibatis.annotations.Param;
import org.springframework.stereotype.Repository;
import java.util.List;
/**
* 车辆绑定优惠券记录Mapper接口
*
@@ -60,4 +61,11 @@ public interface CarCouponRecordMapper {
* @return 结果
*/
public int deleteCarCouponRecordByIds(Long[] ids);
/**
* 根据订单号和车牌号查询车辆绑定优惠券记录(发券成功记录)
* @param orderCode
* @return
*/
CarCouponRecord selectCarCouponRecord(@Param("orderCode") String orderCode);
}