浏览代码

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

lyr 8 年之前
父节点
当前提交
5b95455e06

+ 1 - 1
patient-co-wlyy/src/main/java/com/yihu/wlyy/service/app/account/DoctorInfoService.java

@ -701,7 +701,7 @@ public class DoctorInfoService extends BaseService {
        Doctor docMobile = doctorDao.findByMobile(mobile);
        if (docMobile != null) {
        if (docMobile != null && !docMobile.getCode().equals(doctor)) {
            return -2;
        }

+ 1 - 1
patient-co-wlyy/src/main/java/com/yihu/wlyy/service/app/account/PatientInfoService.java

@ -78,7 +78,7 @@ public class PatientInfoService extends BaseService {
		Patient pMobile = patientDao.findByMobile(mobile);
		if (pMobile == null) {
		if (pMobile == null && !p.getCode().equals(patient)) {
			return -2;
		}