无关风月
2024-08-24 d0a2f8a17bb7888602f0f421bb01a765ef04fd29
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
@@ -24,4 +26,6 @@
    */
   @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);
}