| | |
| | | import io.swagger.v3.oas.annotations.responses.ApiResponses; |
| | | import io.swagger.v3.oas.annotations.tags.Tag; |
| | | import jakarta.validation.Valid; |
| | | import jakarta.validation.constraints.NotNull; |
| | | import lombok.RequiredArgsConstructor; |
| | | import lombok.extern.slf4j.Slf4j; |
| | | import org.springframework.http.MediaType; |
| | |
| | | |
| | | return BaseResponseUtils.buildSuccess(true) ; |
| | | } |
| | | |
| | | /** |
| | | * 根据村ID获取12位行政区划 |
| | | * @param villageId |
| | | * @return |
| | | */ |
| | | @Operation(summary = "根据村ID获取12位行政区划", description = "根据村ID获取12位行政区划") |
| | | @ApiResponses(value = { |
| | | @ApiResponse( |
| | | responseCode = ResultCodeMsg.RsCode.SUCCESS_CODE, |
| | | description = "操作结果:true:成功,false:失败(BaseResponse.content)", |
| | | content = {@Content(mediaType = MediaType.APPLICATION_JSON_VALUE, |
| | | schema = @Schema(implementation = Boolean.class))} |
| | | ) |
| | | }) |
| | | @GetMapping(path = "district") |
| | | @SsoAop() |
| | | public BaseResponse<Boolean> getDistrictNum(@RequestParam("villageId") @NotNull(message = "村编号不能为空") Long villageId){ |
| | | /** |
| | | * 获取5级行政区划信息 |
| | | */ |
| | | Map map_districts = Optional.ofNullable(clientSv.getDistrictsByVillageId(villageId)).orElse(new HashMap()); |
| | | if(map_districts.size() <= 0) { |
| | | return BaseResponseUtils.buildFail("区划信息有误"); |
| | | } |
| | | |
| | | String provinceNum = map_districts.get("provinceNum").toString(); |
| | | String cityNum = map_districts.get("cityNum").toString(); |
| | | String countyNum = map_districts.get("countyNum").toString(); |
| | | String townNum = map_districts.get("townNum").toString(); |
| | | String villageNum = map_districts.get("villageNum").toString(); |
| | | |
| | | // 生成12位5级行政区划编码串及名称串 |
| | | Long districtNum = Long.parseLong(provinceNum + cityNum + countyNum + townNum + villageNum); |
| | | |
| | | Map map = new HashMap(); |
| | | map.put("districtNum", districtNum); |
| | | return BaseResponseUtils.buildSuccess(map) ; |
| | | } |
| | | } |