|
|
@ -99,6 +99,19 @@ public class AreaCodeController { |
|
|
|
return new Result<List<AreaCodeDictResultDTO>>().ok(areaCodeService.areaCodeDictTreePlus(formDTO)); |
|
|
|
} |
|
|
|
|
|
|
|
/** |
|
|
|
* 行政编码查询 |
|
|
|
* |
|
|
|
* @param formDTO |
|
|
|
* @return com.epmet.commons.tools.utils.Result<java.util.List < com.epmet.dto.result.AreaCodeDictResultDTO>> |
|
|
|
* @author zhy |
|
|
|
* @date 2022/7/6 10:28 |
|
|
|
*/ |
|
|
|
@PostMapping("areacodedicttreenew") |
|
|
|
public Result<List<AreaCodeDictResultDTO>> areaCodeDictTreeNew(@RequestBody AreaCodeDictFormDTO formDTO) { |
|
|
|
return new Result<List<AreaCodeDictResultDTO>>().ok(areaCodeService.areaCodeDictTree(formDTO)); |
|
|
|
} |
|
|
|
|
|
|
|
/** |
|
|
|
* @param formDTO |
|
|
|
* @author yinzuomei |
|
|
|