浏览代码

代码修改

8 年之前
父节点
当前提交
04b22a730a
共有 1 个文件被更改,包括 1 次插入1 次删除
  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],