feiyu02
2022-10-21 f22c4b9230808fed4fec80c435eccb4c833349a0
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)
}