|
@ -0,0 +1,18 @@
|
|
|
package com.yihu.wlyy.web.patient.prescription;
|
|
|
|
|
|
import com.yihu.wlyy.web.BaseController;
|
|
|
import io.swagger.annotations.Api;
|
|
|
import org.springframework.http.MediaType;
|
|
|
import org.springframework.stereotype.Controller;
|
|
|
import org.springframework.web.bind.annotation.RequestMapping;
|
|
|
|
|
|
/**
|
|
|
* Created by Trick on 2017/7/25.
|
|
|
*/
|
|
|
@Controller
|
|
|
@RequestMapping(value = "/patient/prescriptionInfo", produces = MediaType.APPLICATION_JSON_UTF8_VALUE)
|
|
|
@Api(description = "患者端-长处方接口")
|
|
|
public class PatientPrescriptionInfoController extends BaseController {
|
|
|
|
|
|
}
|
|
|
|