|
@ -206,6 +206,20 @@ public class PrescriptionController extends BaseController{
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
|
|
@RequestMapping(value = "fadeRecipe",method = RequestMethod.POST)
|
|
|
|
@ApiOperation("挂号作废处方接口")
|
|
|
|
public Result fadeRecipe(@ApiParam(name="json",value="json",defaultValue = "{}")
|
|
|
|
@RequestParam(value = "json",required = true) String json){
|
|
|
|
try {
|
|
|
|
String re = prescriptionService.fadeRecipe(JSONObject.fromObject(json),null,null);
|
|
|
|
|
|
|
|
return Result.success("挂号作废处方接口!",re);
|
|
|
|
} catch (Exception ex) {
|
|
|
|
ex.printStackTrace();
|
|
|
|
return Result.error(ex.getMessage());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
/************************************ CA认证 ************************************************************/
|
|
/************************************ CA认证 ************************************************************/
|
|
@RequestMapping(value = "RequestRealNameSoftCertAndSign",method = RequestMethod.POST)
|
|
@RequestMapping(value = "RequestRealNameSoftCertAndSign",method = RequestMethod.POST)
|
|
@ResponseBody
|
|
@ResponseBody
|