认证-bug修改
This commit is contained in:
+2
-2
@@ -396,7 +396,7 @@ public class ParamsCollectManifestEOController extends JeroController<ParamsColl
|
||||
@ApiOperation(value="参数项收集清单-配置下拉选项(引用参数)", notes="参数项收集清单-配置下拉选项(引用参数)")
|
||||
@PostMapping(value = "/getConfigLableListR")
|
||||
// @RequiresPermissions("params:collectManifest:refer")
|
||||
public Result<?> getConfigLableListRefer(@RequestBody ParamsCollectManifestVO paramsCollectManifestVO) {
|
||||
public Result<?> getConfigLableListRefer(ParamsCollectManifestVO paramsCollectManifestVO) {
|
||||
List<Map<String, String>> configLableList = paramsCollectManifestEOService.getConfigLabelList(paramsCollectManifestVO);
|
||||
return Result.OK(configLableList);
|
||||
}
|
||||
@@ -411,7 +411,7 @@ public class ParamsCollectManifestEOController extends JeroController<ParamsColl
|
||||
@ApiOperation(value="参数项收集清单-引用参数", notes="参数项收集清单-引用参数")
|
||||
@PostMapping(value = "/referParams")
|
||||
// @RequiresPermissions("params:collectManifest:refer")
|
||||
public Result<?> referParams(ParamsCollectManifestVO paramsCollectManifestVO) {
|
||||
public Result<?> referParams(@RequestBody ParamsCollectManifestVO paramsCollectManifestVO) {
|
||||
boolean isSuccess = paramsCollectManifestEOService.referParams(paramsCollectManifestVO);
|
||||
if (isSuccess) {
|
||||
return Result.OK("引用参数成功!");
|
||||
|
||||
Reference in New Issue
Block a user