qushaowei
2024-03-28 1a2258c4eca2e7514b6096004fa1c3e0036b402b
lxzn-module-mdc/src/main/java/org/jeecg/modules/mdc/controller/MdcDriveTypeParamConfigController.java
@@ -169,4 +169,12 @@
        return Result.OK(result);
    }
    @AutoLog(value = "驱动参数配置-根据控制系统类型获取参数")
    @ApiOperation(value = "驱动参数配置-根据控制系统类型获取参数", notes = "驱动参数配置-根据控制系统类型获取参数")
    @GetMapping(value = "/getDriveParamOptionsByType")
    public Result<List<OptionsDto>> getDriveParamOptionsByType(@RequestParam(name = "controlSystemType", required = true) String controlSystemType) {
        List<OptionsDto> result = mdcDriveTypeParamConfigService.getDriveParamOptionsByType(controlSystemType);
        return Result.OK(result);
    }
}