Commit e0a718c1 by fudahua

feat:过滤日志

parent da516277
......@@ -329,7 +329,7 @@ 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(",");
logger.info("查询开始:{}",tableId);
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