|
|
@ -446,6 +446,14 @@ public class SysDeptController { |
|
|
|
return new Result(); |
|
|
|
} |
|
|
|
|
|
|
|
/** |
|
|
|
* 获取坐标所处网格 |
|
|
|
* |
|
|
|
* @param formDTO |
|
|
|
* @return com.elink.esua.epdc.commons.tools.utils.Result<com.elink.esua.epdc.dto.GisGridDTO> |
|
|
|
* @author zhy |
|
|
|
* @date 2022/9/6 14:44 |
|
|
|
*/ |
|
|
|
@PostMapping("gis/getGridByCoordinate") |
|
|
|
public Result<GisGridDTO> getGridByCoordinate(@RequestBody GisFormDTO formDTO) { |
|
|
|
return new Result<GisGridDTO>().ok(sysDeptService.getCoordinate(formDTO)); |
|
|
@ -463,4 +471,18 @@ public class SysDeptController { |
|
|
|
public Result<List<GisGridResultDTO>> getOptions(@RequestBody GisGridFormDTO dto) { |
|
|
|
return new Result<List<GisGridResultDTO>>().ok(gisService.listGridOption(dto)); |
|
|
|
} |
|
|
|
|
|
|
|
/** |
|
|
|
* 更新北上诉办公司信息 |
|
|
|
* |
|
|
|
* @param |
|
|
|
* @return com.elink.esua.epdc.commons.tools.utils.Result<java.lang.String> |
|
|
|
* @author zhy |
|
|
|
* @date 2022/9/4 17:29 |
|
|
|
*/ |
|
|
|
@GetMapping("company/list") |
|
|
|
public Result getCompanyList() { |
|
|
|
sysDeptService.getCompanyList(); |
|
|
|
return new Result(); |
|
|
|
} |
|
|
|
} |
|
|
|