| | |
| | | package com.flightfeather.grid.web |
| | | |
| | | import com.flightfeather.grid.domain.ds1.entity.Clue |
| | | import com.flightfeather.grid.domain.ds1.entity.ClueInternal |
| | | import com.flightfeather.grid.service.ClueService |
| | | import io.swagger.annotations.Api |
| | | import io.swagger.annotations.ApiOperation |
| | |
| | | @ApiParam("单页数据量") @RequestParam(required = false) pageSize: Int?, |
| | | ) = resPack { clueService.getClue(sTime, eTime, pageNum, pageSize) } |
| | | |
| | | @ApiOperation("查询下发线索") |
| | | @PostMapping("/search") |
| | | fun searchClue( |
| | | @ApiParam("查询条件") @RequestBody clue: Clue, |
| | | ) = resPack { clueService.searchClue(clue) } |
| | | |
| | | @ApiOperation("从远程数据源拉取下发线索") |
| | | @GetMapping("/fetch/remote") |
| | | fun fetchRemoteClue( |