Browse Source

Merge branch 'dev' of trick9191/jw2.0 into dev

huangwenjie 6 years ago
parent
commit
ea6f5ddaaa

+ 4 - 1
svr/svr-wlyy-specialist/src/main/java/com/yihu/jw/service/SpecialistService.java

@ -510,11 +510,14 @@ public class SpecialistService{
                " r.patient_name AS patientName, " +
                " r.team_code, " +
                " t.`name` AS name," +
                " d.photo" +
                " d.photo," +
                " md.code AS doctor," +
                " md.name AS doctorName" +
                " FROM " +
                " wlyy_specialist_patient_relation r  " +
                " JOIN wlyy.wlyy_admin_team t ON t.id = r.team_code " +
                " JOIN wlyy.wlyy_doctor d ON t.leader_code = d.`code` " +
                " JOIN wlyy.wlyy_doctor md ON md.code = r.doctor " +
                " WHERE " +
                " r.patient = '"+patient+"' " +
                " AND r.`status` >=0  " +