Browse Source

长处方相关接口

trick9191 8 years ago
parent
commit
fd715bfc37

+ 1 - 0
patient-co-wlyy/src/main/java/com/yihu/wlyy/entity/patient/Patient.java

@ -30,6 +30,7 @@ public class Patient extends IdEntity implements Serializable {
	 */
	private static final long serialVersionUID = 8358924836164389434L;
	private String test;
	// 业务主键
	private String code;
	// 身份证号

+ 13 - 0
patient-co-wlyy/src/main/java/com/yihu/wlyy/service/app/prescription/PrescriptionInfoService.java

@ -0,0 +1,13 @@
package com.yihu.wlyy.service.app.prescription;
import com.yihu.wlyy.service.BaseService;
import org.springframework.stereotype.Service;
import org.springframework.transaction.annotation.Transactional;
/**
 * Created by Trick on 2017/7/25.
 */
@Service
@Transactional
public class PrescriptionInfoService extends BaseService {
}

+ 18 - 0
patient-co-wlyy/src/main/java/com/yihu/wlyy/web/patient/prescription/PatientPrescriptionInfoController.java

@ -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 {
}