package com.nokia.controller.web; import com.nokia.common.R; import com.nokia.service.AreaService; import com.nokia.vo.TreeAreaVo; import io.swagger.v3.oas.annotations.Operation; import io.swagger.v3.oas.annotations.tags.Tag; import org.springframework.web.bind.annotation.PostMapping; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RestController; import javax.servlet.http.HttpSession; @Tag(name = "地区") @RestController @RequestMapping("api/web/area") public class WebAreaController { private final AreaService areaService; public WebAreaController(AreaService areaService) { this.areaService = areaService; } /** * 查询省市区树形接口(用户列表地区选择框) * */ @Operation(summary = "查询省市区树形接口(用户列表地区选择框)") @PostMapping("tree") public R tree(HttpSession session) { return areaService.tree(session); } /** * 查询省和地市树形接口(添加修改用户、登录日志地区选择框) * */ @Operation(summary = "查询省和地市树形接口(添加修改用户、登录日志地区选择框)") @PostMapping("treeProvinceCity") public R treeProvinceCity(HttpSession session) { return areaService.treeProvinceCity(session); } }