| | |
| | | import com.dsh.activity.feignclient.other.model.StoreDetailOfCourse; |
| | | import org.springframework.cloud.openfeign.FeignClient; |
| | | 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; |
| | |
| | | |
| | | |
| | | @PostMapping("/store/queryStoreByIds") |
| | | List<Store> queryStoreByIds(List<Integer> ids); |
| | | List<Store> queryStoreByIds(@RequestBody List<Integer> ids); |
| | | |
| | | @PostMapping("/store/queryStoreIdByCityCode") |
| | | List<Integer> queryStoreIdByCityCode(@RequestBody List<String> collect); |
| | | |
| | | @PostMapping("/store/querySiteIdById") |
| | | List<Integer> querySiteIdById(@RequestBody List<Integer> storeIds); |
| | | |
| | | |
| | | } |