|
@@ -379,8 +379,8 @@ public class BizRecycleBinController extends BaseController {
|
|
* 还原回收站
|
|
* 还原回收站
|
|
*/
|
|
*/
|
|
@PreAuthorize("@ss.hasPermi('business:bin:restore')")
|
|
@PreAuthorize("@ss.hasPermi('business:bin:restore')")
|
|
- @PostMapping("/restoreArchive")
|
|
|
|
- public AjaxResult restoreArchive(@RequestBody List<Long> ids) {
|
|
|
|
|
|
+ @PostMapping("/restoreArchive/{ids}")
|
|
|
|
+ public AjaxResult restoreArchive(@PathVariable List<Long> ids) {
|
|
return toAjax(bizRecycleBinService.restore(ids, ordertabs, false));
|
|
return toAjax(bizRecycleBinService.restore(ids, ordertabs, false));
|
|
}
|
|
}
|
|
|
|
|