档案抽取
This commit is contained in:
parent
9cb65dfa30
commit
fec6fb2e00
|
|
@ -100,6 +100,7 @@ public class FileManagementController extends BaseController {
|
||||||
return R.fail("请求出错了");
|
return R.fail("请求出错了");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ApiOperation(value = "新增右侧档案列表")
|
@ApiOperation(value = "新增右侧档案列表")
|
||||||
@PostMapping("addFileManageLeft")
|
@PostMapping("addFileManageLeft")
|
||||||
@SysLog(title = "新增右侧档案列表", module = "档案管理->档案目录管理", businessType = OperaType.INSERT, details = "新增右侧档案列表", logType = 1)
|
@SysLog(title = "新增右侧档案列表", module = "档案管理->档案目录管理", businessType = OperaType.INSERT, details = "新增右侧档案列表", logType = 1)
|
||||||
|
|
@ -138,6 +139,7 @@ public class FileManagementController extends BaseController {
|
||||||
return R.fail("请求出错了");
|
return R.fail("请求出错了");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ApiOperation(value = "修改档案")
|
@ApiOperation(value = "修改档案")
|
||||||
@PostMapping("updateFileManageLeft")
|
@PostMapping("updateFileManageLeft")
|
||||||
@SysLog(title = "修改档案", module = "档案管理->档案目录管理", businessType = OperaType.UPDATE, details = "修改档案", logType = 1)
|
@SysLog(title = "修改档案", module = "档案管理->档案目录管理", businessType = OperaType.UPDATE, details = "修改档案", logType = 1)
|
||||||
|
|
@ -194,4 +196,12 @@ public class FileManagementController extends BaseController {
|
||||||
return R.fail("请求出错了");
|
return R.fail("请求出错了");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ApiOperation(value = "档案抽取")
|
||||||
|
@PostMapping("fileExtract")
|
||||||
|
@SysLog(title = "档案抽取", module = "档案管理->档案目录管理", businessType = OperaType.DELETE, details = "档案抽取", logType = 1)
|
||||||
|
@RequiresPermissions("file:manage:extract")
|
||||||
|
public R fileExtract(@RequestBody DaKyProFilesContentsDto dto) {
|
||||||
|
return R.ok();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue