Commit 1f009334 by 陶光胜

通过id查询省市区名称

parent 4a69bba3
......@@ -130,7 +130,7 @@ public class ProvincesController {
if(serviceResponse2.isSuccess()){
List<CountyDTO> countyDTOList = serviceResponse2.getResult();
for(CountyDTO countyDTO : countyDTOList){
if(id.equals(countyDTO.getCityId())){
if(id.equals(countyDTO.getCountyId())){
result.add(countyDTO.getCountyName());
}
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment