|
@@ -27,6 +27,7 @@
|
|
package com.persagy.server.controllers.dict
|
|
package com.persagy.server.controllers.dict
|
|
|
|
|
|
import com.persagy.server.datacenter.models.entities.dictnew.DefClass
|
|
import com.persagy.server.datacenter.models.entities.dictnew.DefClass
|
|
|
|
+import com.persagy.server.datacenter.wanda.response.DictInfoResponse
|
|
import com.persagy.server.service.dict.DefFuncIdService
|
|
import com.persagy.server.service.dict.DefFuncIdService
|
|
import com.persagy.service.models.responses.SQueryResponse
|
|
import com.persagy.service.models.responses.SQueryResponse
|
|
import io.swagger.v3.oas.annotations.Operation
|
|
import io.swagger.v3.oas.annotations.Operation
|
|
@@ -57,7 +58,7 @@ class DictCustomController {
|
|
*/
|
|
*/
|
|
@Operation(summary = "类型下信息点", description = "")
|
|
@Operation(summary = "类型下信息点", description = "")
|
|
@GetMapping(value = ["/equip/info"])
|
|
@GetMapping(value = ["/equip/info"])
|
|
- fun dictEquipInfoQuer(@RequestParam category: String){
|
|
|
|
-
|
|
|
|
|
|
+ fun dictEquipInfoQuer(@RequestParam category: String): DictInfoResponse {
|
|
|
|
+ return DefFuncIdService.dictEquipInfoQuery(category)
|
|
}
|
|
}
|
|
}
|
|
}
|