| | |
| | | package com.ruoyi.other.api.feignClient; |
| | | |
| | | import com.ruoyi.common.core.constant.ServiceNameConstants; |
| | | import com.ruoyi.common.core.domain.R; |
| | | import com.ruoyi.other.api.domain.ShopPoint; |
| | | import com.ruoyi.other.api.domain.ShopPointCopy; |
| | | import com.ruoyi.other.api.factory.ShopPointClientFallbackFactory; |
| | |
| | | import org.springframework.web.bind.annotation.PostMapping; |
| | | import org.springframework.web.bind.annotation.RequestBody; |
| | | import org.springframework.web.bind.annotation.RequestParam; |
| | | |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * @author zhibing.pu |
| | |
| | | void saveShopPoint(@RequestBody ShopPoint shopPoint); |
| | | |
| | | @PostMapping("/shop-point/saveShopPointCopy") |
| | | void saveShopPoint(@RequestBody ShopPointCopy shopPoint); |
| | | void saveShopPointCopy(@RequestBody ShopPointCopy shopPoint); |
| | | |
| | | @DeleteMapping("/shop-point/deleteShopPointCopy") |
| | | void deleteShopPointCopy(@RequestParam("orderId") Long orderId); |
| | | void deleteShopPointCopy(@RequestParam("orderId") Long orderId, @RequestParam("type") List<Integer> type); |
| | | |
| | | |
| | | @PostMapping("/shop-point/getShopPointCopy") |
| | | R<List<ShopPointCopy>> getShopPointCopy(@RequestParam("orderId") Long orderId, @RequestParam("type") List<Integer> type); |
| | | } |