feiyu02
2022-09-23 497475defd5d0ebf90ae6a8e2b080a16d78043ab
src/main/kotlin/cn/flightfeather/supervision/lightshare/web/LawController.kt
@@ -43,4 +43,11 @@
        @ApiParam(value = "用户id") @PathVariable userId: String,
        @ApiParam(value = "查找条件") @RequestBody condition: LawsRegulationsCondition
    ) = lawService.getLawsRegulationsWithEachType(condition)
    @ApiOperation(value = "查询资源所在系列")
    @PostMapping("/series")
    fun getSeries(
        @ApiParam(value = "用户id") @RequestParam userId: String,
        @ApiParam(value = "查找条件") @RequestParam(value = "seriesId") seriesId: String,
    ) = lawService.getSeries(userId, seriesId)
}