Przeglądaj źródła

修复获取团队申请列表bug

吴志根 4 lat temu
rodzic
commit
ba0ec64374

+ 4 - 4
src/dsb/com/cnd3b/restcontroller/customer/usercenter/teammsg/teammsg.java

@@ -229,11 +229,11 @@ public class teammsg extends Controller {
         SQLFactory sqlFactory = new SQLFactory(this, "ÍŶӼÓÈëÉêÇëÁбí", pageSize, pageNumber, "createdate");
         sqlFactory.addParameter("tagentsid", tagentsid);
         sqlFactory.addParameter("siteid", siteid);
+        System.err.println(sqlFactory.getSQL());
         Rows rows = dbConnect.runSqlQuery(sqlFactory.getSQL());
-        for (Row row : rows) {
-            System.err.println(row.getString("tenterprise_userid"));
-            row.put("attinfos", getAttachmentUrl("tenterprise_users", row.getString("tenterprise_userid")));
-        }
+//        for (Row row : rows) {
+//            row.put("attinfos", getAttachmentUrl("tenterprise_users", row.getString("tenterprise_userid")));
+//        }
 
         return getSucReturnObject().setDataByPaging(rows).preloading(1).toString();
     }