1:修改通联关系百分比流量返回gps
2:修改iprange接口添加searchip查询条件及desc查询条件
This commit is contained in:
@@ -66,7 +66,7 @@ public class LogDataService {
|
||||
StringBuffer sql = new StringBuffer();
|
||||
sql.append("SELECT SUM(s2c_pkt_num + s2c_pkt_num)*8/");
|
||||
sql.append(second);
|
||||
sql.append(" AS pps , SUM(c2s_byte_num + s2c_byte_num)*8/");
|
||||
sql.append(" AS pps , SUM(c2s_byte_num + s2c_byte_num)*8/1024/1024/1024/");
|
||||
sql.append(second);
|
||||
sql.append(
|
||||
" AS bps FROM tbs_ods_ntc_conn_record_log_local t WHERE found_time IN ( SELECT DISTINCT found_time FROM tbs_ods_ntc_conn_record_log_local WHERE found_time >= ");
|
||||
|
||||
@@ -156,11 +156,10 @@ public class NtcReportService extends BaseLogService {
|
||||
|
||||
}
|
||||
|
||||
|
||||
|
||||
public List<NtcIpRangeReport> findNtcIpRangeReport(NtcIpRangeReport entity) throws Exception {
|
||||
List<NtcIpRangeReport> list = dao.findNtcIpRangeReport(entity);
|
||||
return list;
|
||||
public Page<NtcIpRangeReport> findNtcIpRangeReport(Page page, NtcIpRangeReport entity) throws Exception {
|
||||
entity.setPage(page);
|
||||
page.setList(dao.findNtcIpRangeReport(entity));
|
||||
return page;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user