Browse Source

fix some bug

Mr.qian 2 weeks ago
parent
commit
533fe939c8

+ 1 - 1
cif-service/src/main/java/com/txz/cif/dao/impl/UserMapperImpl.java

@@ -8,6 +8,6 @@ package com.txz.cif.dao.impl;
 public class UserMapperImpl {
 public class UserMapperImpl {
     
     
     public String getUsersByIds(String userIds){
     public String getUsersByIds(String userIds){
-        return "select head_pic , name from c_user where id in (${userIds})";
+        return "select id , head_pic , name from c_user where id in (${userIds})";
     }
     }
 }
 }