feiyu02
2025-11-14 c03e1d823eb86c856ecbe40d8d2180ffce7c7b0f
src/main/kotlin/cn/flightfeather/supervision/lightshare/web/DomainitemController.kt
@@ -66,5 +66,11 @@
    @GetMapping("/name")
    fun getItemByName(
        @ApiParam("值域名称") @RequestParam("name") name:String
    ) = domainitemService.findOneByName(name)
    ) = domainitemService.findByLogName(name)
    @ApiOperation("根据值域类别guid,获取具体的选项")
    @GetMapping("/catalogId")
    fun getItemByCatalogId(
        @ApiParam("值域类别guid") @RequestParam("catalogId") catalogId:String
    ) = domainitemService.findByLogID(catalogId)
}