修复运营商局点报表调用url错误的bug

This commit is contained in:
wangxin
2018-07-18 17:48:43 +08:00
parent 53ec3978d5
commit db58842418
2 changed files with 2 additions and 1 deletions

View File

@@ -68,7 +68,7 @@ public class NtcEntranceReportController extends BaseController {
model.addAttribute("titles", titles);
try {
ReportResult<NtcEntranceReport> result=new ReportResult<>();
StringBuffer url=new StringBuffer(Constants.LOG_BASE_URL+Constants.NTC_NTC_DESTIP_REPORT);
StringBuffer url=new StringBuffer(Constants.LOG_BASE_URL+Constants.NTC_NTC_ENTRANCE_REPORT);
Gson gson=Constants.gsonbuilder.create();
String json=result.getReport(url.toString(), bean);
result = gson.fromJson(json, new TypeToken<ReportResult<NtcEntranceReport>>() {