Commit 92a6d7bd by fudahua

Merge branch 'feature-2022-11-13-addlog' into 'master'

Feature 2022 11 13 addlog

See merge request !56
parents 7069b746 e0a718c1
......@@ -329,7 +329,10 @@ public class FlatQueryController {
@RequestMapping("/flat-query-filter-data")
public List<Object> getFlatQueryTextFilterData(@RequestParam String tableId, @RequestParam String enterpriseIdsText, @RequestParam String fieldName, HttpServletRequest request, HttpServletResponse response) {
String[] enterpriseIdsArr = enterpriseIdsText.split(",");
return this.flatQueryResultService.getFlatQueryFilterData(tableId, CollectionUtils.arrayToList(enterpriseIdsArr), fieldName);
logger.info("查询开始:{}-{}",tableId,enterpriseIdsArr);
List filterData = this.flatQueryResultService.getFlatQueryFilterData(tableId, CollectionUtils.arrayToList(enterpriseIdsArr), fieldName);
logger.info("查询结束:{}",JSONObject.toJSONString(filterData));
return filterData;
}
/** 查询自定义指标查询
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment