Lius
2023-11-09 a8ddac646d5129e9818ea82f404d0c0a8d2bc239
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);
    }
}