package com.kidgrow.log.controller; import com.alibaba.fastjson.JSONObject; import com.kidgrow.common.model.PageResult; import com.kidgrow.searchcenter.client.service.IQueryService; import com.kidgrow.searchcenter.model.SearchDto; import io.swagger.annotations.ApiImplicitParam; import io.swagger.annotations.ApiImplicitParams; import io.swagger.annotations.ApiOperation; import org.springframework.web.bind.annotation.GetMapping; import org.springframework.web.bind.annotation.RestController; /** * 石家庄喜高科技有限责任公司 版权所有 © Copyright 2020
* * @Description: 审计日志
* @Project:
* @CreateDate: Created in 2020/2/24 11:23
* @Author: liuke */ @RestController public class AuditLogController { private final IQueryService queryService; public AuditLogController(IQueryService queryService) { this.queryService = queryService; } @ApiOperation(value = "审计日志全文搜索列表") @ApiImplicitParams({ @ApiImplicitParam(name = "page", value = "分页起始位置", required = true, dataType = "Integer"), @ApiImplicitParam(name = "limit", value = "分页结束位置", required = true, dataType = "Integer"), @ApiImplicitParam(name = "queryStr", value = "搜索关键字", dataType = "String") }) @GetMapping(value = "/auditLog") public PageResult getPage(SearchDto searchDto) { searchDto.setIsHighlighter(true); searchDto.setSortCol("timestamp"); return queryService.strQuery("audit-log-*", searchDto); } }