| | |
| | | package com.dsh.other.feignclient.activity; |
| | | |
| | | import com.dsh.other.feignclient.activity.model.Coupon; |
| | | import com.dsh.other.feignclient.activity.model.PointsMerchandise; |
| | | import com.dsh.other.model.CouponCity; |
| | | import com.dsh.other.model.CouponStore; |
| | | import org.springframework.cloud.openfeign.FeignClient; |
| | | import org.springframework.web.bind.annotation.PostMapping; |
| | | |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * @author zhibing.pu |
| | |
| | | */ |
| | | @PostMapping("/coupon/queryCouponById") |
| | | Coupon queryCouponById(Integer id); |
| | | @PostMapping("/coupon/queryCouponAll") |
| | | List<Coupon> queryCouponAll(); |
| | | @PostMapping("/base/coupon/queryAllStore") |
| | | List<CouponStore> queryAllStore(); |
| | | @PostMapping("/base/coupon/queryAllCity") |
| | | List<CouponCity> queryAllCity(); |
| | | @PostMapping("/base/coupon/queryAllPointGoods") |
| | | List<PointsMerchandise> queryAllPointGoods(); |
| | | } |