Quellcode durchsuchen

Merge branch 'dev' of chenweida/patient-co-management into dev

chenweida vor 7 Jahren
Ursprung
Commit
ea2847841e

+ 2 - 0
patient-co-wlyy/src/main/java/com/yihu/wlyy/web/doctor/prescription/PrescriptionInfoController.java

@ -18,4 +18,6 @@ public class PrescriptionInfoController extends BaseController{
    @Autowired
    private PrescriptionInfoService prescriptionInfoService;
}

+ 2 - 1
patient-co-wlyy/src/main/java/com/yihu/wlyy/web/patient/prescription/PatientPrescriptionController.java

@ -149,7 +149,7 @@ public class PatientPrescriptionController extends BaseController {
     */
    @RequestMapping(value = "/prescriptionFollow", method = RequestMethod.GET)
    @ApiOperation(value = "获取处方订单详情")
    public String addReply(
    public String prescriptionFollow(
            @RequestParam(required = true) @ApiParam(value = "处方code", name = "prescriptionCode") String prescriptionCode) {
        try {
            JSONObject jo = new JSONObject();
@ -170,4 +170,5 @@ public class PatientPrescriptionController extends BaseController {
            return error(-1, "获取失败");
        }
    }
}