道路线索应急巡查系统服务后台
feiyu02
2025-04-25 79bd8ea222cc3518ec91dce3dfb30fcf387cf96d
src/main/kotlin/com/flightfeather/grid/web/ClueController.kt
@@ -1,5 +1,7 @@
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
@@ -22,6 +24,12 @@
        @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(