|
@@ -67,7 +67,7 @@ public class DictionaryDataController{
|
|
|
*/
|
|
*/
|
|
|
@ApiOperation(value = "停用" , notes = "停用")
|
|
@ApiOperation(value = "停用" , notes = "停用")
|
|
|
@PostMapping("disable/{id}")
|
|
@PostMapping("disable/{id}")
|
|
|
- public ResponseResultVO<Boolean> disable(@PathVariable Long id){
|
|
|
|
|
|
|
+ public ResponseResultVO<Boolean> disable(@PathVariable String id){
|
|
|
return this.getService().disable(id);
|
|
return this.getService().disable(id);
|
|
|
}
|
|
}
|
|
|
|
|
|
|
@@ -78,7 +78,7 @@ public class DictionaryDataController{
|
|
|
*/
|
|
*/
|
|
|
@ApiOperation(value = "启用", notes = "启用")
|
|
@ApiOperation(value = "启用", notes = "启用")
|
|
|
@PostMapping("enable/{id}")
|
|
@PostMapping("enable/{id}")
|
|
|
- public ResponseResultVO<Boolean> enable(@PathVariable Long id){
|
|
|
|
|
|
|
+ public ResponseResultVO<Boolean> enable(@PathVariable String id){
|
|
|
return this.getService().enable(id);
|
|
return this.getService().enable(id);
|
|
|
}
|
|
}
|
|
|
}
|
|
}
|