|
|
@@ -417,6 +417,16 @@ public class live extends Controller {
|
|
|
sqlFactory.addParameter_in("tagentsidList", tagentsidList);
|
|
|
Rows agentRows = dbConnect.runSqlQuery(sqlFactory.getSQL());
|
|
|
|
|
|
+ for(Row row:agentRows){
|
|
|
+ //观看次数(次)
|
|
|
+ String channelid = row.getString("channelid");
|
|
|
+ long viewCounts = getCount("观看次数", "num", channelid);
|
|
|
+ row.put("viewCounts", viewCounts);
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
return getSucReturnObject().setData(agentRows).toString();
|
|
|
}
|
|
|
|