|
@@ -180,6 +180,7 @@ public class QualityAnalyseController {
|
|
sql = sqlUtil.sqlConditionAnd(sql, new String[]{"t.create_time"}, new String[]{endTime}, new String[]{"<="});
|
|
sql = sqlUtil.sqlConditionAnd(sql, new String[]{"t.create_time"}, new String[]{endTime}, new String[]{"<="});
|
|
}
|
|
}
|
|
sql = sqlUtil.sqlGroupBy(sql, "t.create_user_id");
|
|
sql = sqlUtil.sqlGroupBy(sql, "t.create_user_id");
|
|
|
|
+// sql = sqlUtil.sqlOrderBy(sql, "t.create_user_name");
|
|
list = sqlUtil.execSqlForMap(sql);
|
|
list = sqlUtil.execSqlForMap(sql);
|
|
if (Objects.nonNull(list) && list.size() > 0) {
|
|
if (Objects.nonNull(list) && list.size() > 0) {
|
|
List<Long> dataIdList = new ArrayList<>();
|
|
List<Long> dataIdList = new ArrayList<>();
|
|
@@ -258,6 +259,7 @@ public class QualityAnalyseController {
|
|
sql = sqlUtil.sqlConditionAnd(sql, new String[]{"t.create_time"}, new String[]{endTime}, new String[]{"<="});
|
|
sql = sqlUtil.sqlConditionAnd(sql, new String[]{"t.create_time"}, new String[]{endTime}, new String[]{"<="});
|
|
}
|
|
}
|
|
sql = sqlUtil.sqlGroupBy(sql, "t.create_user_id");
|
|
sql = sqlUtil.sqlGroupBy(sql, "t.create_user_id");
|
|
|
|
+ sql = sqlUtil.sqlOrderBy(sql, "t.create_user_name");
|
|
list = sqlUtil.execSqlForMap(sql);
|
|
list = sqlUtil.execSqlForMap(sql);
|
|
}
|
|
}
|
|
return list;
|
|
return list;
|