|
@ -747,14 +747,13 @@ public class DoctorSignController extends WeixinBaseController {
|
|
|
/**
|
|
|
* 获取居委会字段
|
|
|
* @param countryCode
|
|
|
* @param patientCode
|
|
|
* @return
|
|
|
*/
|
|
|
@RequestMapping(value = "/updatePatientCountry", method = {RequestMethod.GET, RequestMethod.POST})
|
|
|
@ResponseBody
|
|
|
public String setPatientCountry(@RequestParam(required = true)String countryCode,@RequestParam(required = true)String patientCode){
|
|
|
public String setPatientCountry(@RequestParam(required = true)String countryCode){
|
|
|
try {
|
|
|
return write(200, "保存成功", "data", signWebService.setPatientCountry(countryCode,patientCode));
|
|
|
return write(200, "保存成功", "data", signWebService.setPatientCountry(countryCode,getRepUID()));
|
|
|
} catch (Exception e) {
|
|
|
error(e);
|
|
|
return error(-1, "查询失败");
|