Ver código fonte

代码优化

chenweida 8 anos atrás
pai
commit
9b2788dca5

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

@ -24,7 +24,7 @@ import java.util.List;
 */
@RestController
@RequestMapping(value = "/doctor/prescriptionInfo")
@Api("医生端-长处方接口")
@Api(description = "医生端-长处方接口")
public class PrescriptionInfoController extends BaseController{
    @Autowired

+ 1 - 1
patient-co/patient-co-wlyy/src/main/java/com/yihu/wlyy/web/doctor/prescription/PrescriptionLogController.java

@ -22,7 +22,7 @@ import java.util.List;
 */
@RestController("doctorPrescriptionLogController")
@RequestMapping(value = "/doctor/prescriptionlog")
@Api("医生端-处方日志")
@Api(description = "医生端-处方日志")
public class PrescriptionLogController extends BaseController {
    @Autowired
    private PrescriptionLogService prescriptionLogService;

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

@ -20,7 +20,7 @@ import java.util.List;
 */
@RestController
@RequestMapping(value = "/patient/prescriptionlog")
@Api("患者端-处方日志")
@Api(description = "患者端-处方日志")
public class PatientPrescriptionLogController extends BaseController {
    @Autowired
    private PrescriptionLogService prescriptionLogService;