luodangjia
2024-08-28 7d797c3f197371bb66c8ed3e60327817e9f0364c
ruoyi-api/ruoyi-api-other/src/main/java/com/ruoyi/other/api/feignClient/CouponClient.java
@@ -9,6 +9,8 @@
import org.springframework.web.bind.annotation.PathVariable;
import org.springframework.web.bind.annotation.PostMapping;
import java.util.List;
/**
 * @author zhibing.pu
 * @Date 2024/8/16 14:00
@@ -22,6 +24,8 @@
    * @param id
    * @return
    */
   @PostMapping("/t-coupon/getCouponById/{id}")
   R<TCoupon> getCouponById(@PathVariable("id") Integer id);
   @PostMapping("/t-coupon/getCouponById1/{id}")
   R<TCoupon> getCouponById1(@PathVariable("id") Integer id);
   @PostMapping("/t-coupon/getCouponIdsByName/{name}")
    R<List<Integer>> getCouponIdsByName(@PathVariable("name")String name);
}