chore: 新增插件额外配置功能

- 在插件管理中添加 extra 字段,用于存储额外配置信息
- 实现插件编辑页面的额外配置编辑功能
- 更新数据库结构,增加 extra 列
- 优化代码编辑器的导入方式
- 更新 fast-crud 相关包版本
This commit is contained in:
xiaojunnuo
2025-04-11 14:00:28 +08:00
parent 67f956d4a0
commit c2ca1ea1e5
8 changed files with 79 additions and 49 deletions
@@ -44,6 +44,9 @@ export class PluginEntity {
@Column({ comment: '元数据', length: 40960, nullable: true })
metadata: string;
@Column({ comment: '额外配置', length: 40960, nullable: true })
extra: string;
@Column({ comment: '作者', length: 100, nullable: true })
author: string;