|
@ -81,6 +81,16 @@ public class PatientInfoPlatFormEndpoint extends EnvelopRestEndpoint {
|
|
|
}
|
|
|
}
|
|
|
|
|
|
@GetMapping(value = "getLatLon")
|
|
|
@ApiOperation("查询所有助老员坐标")
|
|
|
public ListEnvelop getLatLon(){
|
|
|
try {
|
|
|
return ListEnvelop.getSuccess("查询成功",baseServiceNewsService.getLatLon());
|
|
|
}catch (Exception e){
|
|
|
return failedListEnvelopException2(e);
|
|
|
}
|
|
|
}
|
|
|
|
|
|
@GetMapping(value = "findPatinetByName")
|
|
|
@ApiOperation("按名字查找居民坐标")
|
|
|
public ListEnvelop findPatinetByName(@ApiParam(name="name",value = "居民姓名",required = true)
|