Browse Source

代码修改

8 years ago
parent
commit
04b22a730a
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/server/repository/mysql/participant.repo.js

+ 1 - 1
src/server/repository/mysql/participant.repo.js

@ -16,7 +16,7 @@ class ParticipantRepo {
     * @param handler
     */
    static getParticipantsBySessionId(sessionId,handler){
        let sql ="select w.* from participants w where w.session_id =? ";
        let sql ="select p.* from participants w,patients p where and p.id = w.participaint_id and  w.session_id =? ";
        ImDb.execQuery({
            "sql": sql,
            "args": [sessionId],