WebAreaController.java 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. package com.nokia.controller.web;
  2. import com.nokia.common.R;
  3. import com.nokia.service.AreaService;
  4. import com.nokia.vo.TreeAreaVo;
  5. import io.swagger.v3.oas.annotations.Operation;
  6. import io.swagger.v3.oas.annotations.tags.Tag;
  7. import org.springframework.web.bind.annotation.PostMapping;
  8. import org.springframework.web.bind.annotation.RequestMapping;
  9. import org.springframework.web.bind.annotation.RestController;
  10. import javax.servlet.http.HttpSession;
  11. @Tag(name = "地区")
  12. @RestController
  13. @RequestMapping("api/web/area")
  14. public class WebAreaController {
  15. private final AreaService areaService;
  16. public WebAreaController(AreaService areaService) {
  17. this.areaService = areaService;
  18. }
  19. /**
  20. * 查询省市区树形接口(用户列表地区选择框)
  21. *
  22. */
  23. @Operation(summary = "查询省市区树形接口(用户列表地区选择框)")
  24. @PostMapping("tree")
  25. public R<TreeAreaVo> tree(HttpSession session) {
  26. return areaService.tree(session);
  27. }
  28. /**
  29. * 查询省和地市树形接口(添加修改用户、登录日志地区选择框)
  30. *
  31. */
  32. @Operation(summary = "查询省和地市树形接口(添加修改用户、登录日志地区选择框)")
  33. @PostMapping("treeProvinceCity")
  34. public R<TreeAreaVo> treeProvinceCity(HttpSession session) {
  35. return areaService.treeProvinceCity(session);
  36. }
  37. }