BaseCountryServeRemoteController.java 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. package edu.travel.remote;
  2. import com.baomidou.mybatisplus.core.metadata.IPage;
  3. import edu.travel.dto.BaseCountryServeDto;
  4. import edu.travel.remote.base.RemoteBaseController;
  5. import edu.travel.rpc.RPCBaseResponse;
  6. import edu.travel.vo.BaseCountryServeVo;
  7. import org.springframework.cloud.openfeign.FeignClient;
  8. import org.springframework.web.bind.annotation.GetMapping;
  9. import org.springframework.web.bind.annotation.RequestBody;
  10. import java.util.List;
  11. @FeignClient(path = "/baseCountryServe",name = "commodity")
  12. public interface BaseCountryServeRemoteController extends RemoteBaseController<BaseCountryServeVo, BaseCountryServeDto> {
  13. //分页
  14. @GetMapping("/getCountryServePage")
  15. public RPCBaseResponse<IPage<BaseCountryServeVo>> getCountryServePage(BaseCountryServeDto dto);
  16. //服务国家树
  17. @GetMapping("/getCountryServeTree")
  18. public RPCBaseResponse<List<BaseCountryServeVo>> getCountryServeTree();
  19. //获取服务国家信息
  20. @GetMapping("/getCountryServeFormId")
  21. public RPCBaseResponse<BaseCountryServeVo> getFormId(String id);
  22. //更新服务国家信息
  23. @GetMapping("/updateCountryServeFormId")
  24. public RPCBaseResponse<BaseCountryServeVo> updateTargetFormId(@RequestBody BaseCountryServeDto entity);
  25. //新增服务国家信息
  26. @GetMapping("/saveCountryServeForm")
  27. public RPCBaseResponse<BaseCountryServeVo> saveFormTarget(@RequestBody BaseCountryServeDto entity);
  28. //删除服务国家信息
  29. @GetMapping("/deleteCountryServeFormId")
  30. public RPCBaseResponse<BaseCountryServeVo> deleteTargetFormId(@RequestBody List<String> ids);
  31. //获取服务国家列表
  32. @GetMapping("/listForm")
  33. public RPCBaseResponse<List<BaseCountryServeVo>> getAllForm();
  34. }