|
@ -94,8 +94,8 @@ public class PatientEndpoint extends EnvelopRestEndpoint {
|
|
|
@PostMapping(value = BaseRequestMapping.BasePatient.completeInfo)
|
|
|
@ApiOperation(value = "完善信息")
|
|
|
public Envelop completeInfo(@ApiParam(name = "jsonData", value = "jsonData数据", required = true) @RequestParam String jsonData,
|
|
|
@ApiParam(name = "headPortrait", value = "头像", required = false) @RequestParam MultipartFile headPortrait) throws Exception {
|
|
|
return success(patientService.completePatientDetails(headPortrait, jsonData));
|
|
|
@ApiParam(name = "photo", value = "头像", required = false) @RequestParam MultipartFile photo) throws Exception {
|
|
|
return success(patientService.completePatientDetails(photo, jsonData));
|
|
|
}
|
|
|
|
|
|
|