- 新增 erp-plugin crate:插件管理、WASM 运行时、动态表、数据 CRUD - 新增前端插件管理页面(PluginAdmin/PluginCRUDPage)和 API 层 - 新增插件数据迁移(plugins/plugin_entities/plugin_event_subscriptions) - 新增权限补充迁移(为已有租户补充 plugin.admin/plugin.list 权限) - 修复 PluginAdmin 页面 InstallOutlined 图标不存在的崩溃问题 - 修复 settings 唯一索引迁移顺序错误(先去重再建索引) - 更新 wiki 和 CLAUDE.md 反映插件系统集成状态 - 新增 dev.ps1 一键启动脚本
55 lines
1.8 KiB
Rust
55 lines
1.8 KiB
Rust
use sea_orm::entity::prelude::*;
|
|
use serde::{Deserialize, Serialize};
|
|
|
|
#[derive(Clone, Debug, PartialEq, DeriveEntityModel, Serialize, Deserialize)]
|
|
#[sea_orm(table_name = "plugins")]
|
|
pub struct Model {
|
|
#[sea_orm(primary_key, auto_increment = false)]
|
|
pub id: Uuid,
|
|
pub tenant_id: Uuid,
|
|
pub name: String,
|
|
#[sea_orm(column_name = "plugin_version")]
|
|
pub plugin_version: String,
|
|
#[serde(skip_serializing_if = "Option::is_none")]
|
|
pub description: Option<String>,
|
|
#[serde(skip_serializing_if = "Option::is_none")]
|
|
pub author: Option<String>,
|
|
pub status: String,
|
|
pub manifest_json: serde_json::Value,
|
|
#[serde(skip)]
|
|
pub wasm_binary: Vec<u8>,
|
|
pub wasm_hash: String,
|
|
pub config_json: serde_json::Value,
|
|
#[serde(skip_serializing_if = "Option::is_none")]
|
|
pub error_message: Option<String>,
|
|
#[serde(skip_serializing_if = "Option::is_none")]
|
|
pub installed_at: Option<DateTimeUtc>,
|
|
#[serde(skip_serializing_if = "Option::is_none")]
|
|
pub enabled_at: Option<DateTimeUtc>,
|
|
pub created_at: DateTimeUtc,
|
|
pub updated_at: DateTimeUtc,
|
|
#[serde(skip_serializing_if = "Option::is_none")]
|
|
pub created_by: Option<Uuid>,
|
|
#[serde(skip_serializing_if = "Option::is_none")]
|
|
pub updated_by: Option<Uuid>,
|
|
#[serde(skip_serializing_if = "Option::is_none")]
|
|
pub deleted_at: Option<DateTimeUtc>,
|
|
pub version: i32,
|
|
}
|
|
|
|
#[derive(Copy, Clone, Debug, EnumIter, DeriveRelation)]
|
|
pub enum Relation {
|
|
#[sea_orm(has_many = "super::plugin_entity::Entity")]
|
|
PluginEntity,
|
|
#[sea_orm(has_many = "super::plugin_event_subscription::Entity")]
|
|
PluginEventSubscription,
|
|
}
|
|
|
|
impl Related<super::plugin_entity::Entity> for Entity {
|
|
fn to() -> RelationDef {
|
|
Relation::PluginEntity.def()
|
|
}
|
|
}
|
|
|
|
impl ActiveModelBehavior for ActiveModel {}
|