|
@ -183,6 +183,25 @@ public class HealthCareEndPoint extends EnvelopRestEndpoint {
|
|
|
return ObjEnvelop.getSuccess("ok",healthCareService.pharmacistReviewResults(outpatientId));
|
|
|
}
|
|
|
|
|
|
@PostMapping(value = "outpatientReminder")
|
|
|
@ApiOperation(value = "门诊提醒", notes = "门诊提醒")
|
|
|
public ObjEnvelop outpatientReminder(@ApiParam(name = "outpatientId", value = "处方id", required = true)
|
|
|
@RequestParam(value = "outpatientId",required = true) String outpatientId,
|
|
|
@ApiParam(name = "doctorCode",value="医保医生code",required = true)
|
|
|
@RequestParam(value = "doctorCode",required = true) String doctorCode)throws Exception{
|
|
|
return ObjEnvelop.getSuccess("ok",healthCareService.outpatientReminder(outpatientId,doctorCode));
|
|
|
}
|
|
|
|
|
|
|
|
|
@PostMapping(value = "outpatientEventReminder")
|
|
|
@ApiOperation(value = "门诊事中提醒", notes = "门诊事中提醒")
|
|
|
public ObjEnvelop outpatientEventReminder(@ApiParam(name = "outpatientId", value = "处方id", required = true)
|
|
|
@RequestParam(value = "outpatientId",required = true) String outpatientId,
|
|
|
@ApiParam(name = "doctorCode",value="医保医生code",required = true)
|
|
|
@RequestParam(value = "doctorCode",required = true) String doctorCode)throws Exception{
|
|
|
return ObjEnvelop.getSuccess("ok",healthCareService.outpatientEventReminder(outpatientId,doctorCode));
|
|
|
}
|
|
|
|
|
|
@GetMapping(value = "/getYlzToken")
|
|
|
@ApiOperation(value = "获取医保accessToken", notes = "获取医保accessToken")
|
|
|
public ObjEnvelop getChargeDict()throws Exception{
|