|
@ -1,8 +1,10 @@
|
|
|
package com.yihu.jw.care.endpoint.doctor;
|
|
|
|
|
|
import com.alibaba.fastjson.JSONObject;
|
|
|
import com.yihu.jw.care.service.doctor.CareDoctorService;
|
|
|
import com.yihu.jw.care.service.sign.CapacityAssessmentRecordService;
|
|
|
import com.yihu.jw.doctor.dao.BaseDoctorDao;
|
|
|
import com.yihu.jw.restmodel.web.Envelop;
|
|
|
import com.yihu.jw.restmodel.web.ObjEnvelop;
|
|
|
import com.yihu.jw.restmodel.web.PageEnvelop;
|
|
|
import com.yihu.jw.restmodel.web.endpoint.EnvelopRestEndpoint;
|
|
@ -10,10 +12,7 @@ import io.swagger.annotations.Api;
|
|
|
import io.swagger.annotations.ApiOperation;
|
|
|
import io.swagger.annotations.ApiParam;
|
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
|
import org.springframework.web.bind.annotation.GetMapping;
|
|
|
import org.springframework.web.bind.annotation.RequestMapping;
|
|
|
import org.springframework.web.bind.annotation.RequestParam;
|
|
|
import org.springframework.web.bind.annotation.RestController;
|
|
|
import org.springframework.web.bind.annotation.*;
|
|
|
|
|
|
import java.util.List;
|
|
|
import java.util.Map;
|
|
@ -79,4 +78,17 @@ public class DoctorEndpoint extends EnvelopRestEndpoint {
|
|
|
return ObjEnvelop.getError("查询失败");
|
|
|
}
|
|
|
}
|
|
|
|
|
|
@PostMapping(value = "updateDoctor")
|
|
|
@ApiOperation(value = "修改医生信息")
|
|
|
public Envelop update(
|
|
|
@ApiParam(name = "baseDoctorVo", value = "JSON数据", required = true)
|
|
|
@RequestParam(value = "baseDoctorVo") String baseDoctorVo)throws Exception{
|
|
|
JSONObject jsonObject = JSONObject.parseObject(baseDoctorVo);
|
|
|
Boolean update = doctorService.update(jsonObject);
|
|
|
if (!update){
|
|
|
return failed("保存失败,参数不可为空");
|
|
|
}
|
|
|
return success("保存成功");
|
|
|
}
|
|
|
}
|