- Base platform from base.git (ERP base: auth, core, config, message, workflow, plugin) - Created erp-diary module skeleton (lib.rs, dto.rs, error.rs, event.rs, state.rs) - Integrated erp-diary into workspace and erp-server - Added DiaryModule registration in main.rs - Added DiaryState FromRef in state.rs - Diary routes mounted (empty routes, ready for implementation) - Product design spec v1.2 preserved in docs/ - Implementation plan preserved in plans/ Cargo check: OK Cargo test: OK (78+ base tests passing)
46 lines
1.3 KiB
Rust
46 lines
1.3 KiB
Rust
use sea_orm::entity::prelude::*;
|
|
use serde::{Deserialize, Serialize};
|
|
|
|
#[derive(Clone, Debug, PartialEq, DeriveEntityModel, Serialize, Deserialize)]
|
|
#[sea_orm(table_name = "plugin_market_entries")]
|
|
pub struct Model {
|
|
#[sea_orm(primary_key, auto_increment = false)]
|
|
pub id: Uuid,
|
|
pub plugin_id: String,
|
|
pub name: String,
|
|
pub version: String,
|
|
pub description: Option<String>,
|
|
pub author: Option<String>,
|
|
pub category: Option<String>,
|
|
pub tags: Option<serde_json::Value>,
|
|
pub icon_url: Option<String>,
|
|
pub screenshots: Option<serde_json::Value>,
|
|
#[serde(skip)]
|
|
pub wasm_binary: Vec<u8>,
|
|
#[serde(skip_serializing)]
|
|
pub manifest_toml: String,
|
|
pub wasm_hash: String,
|
|
pub min_platform_version: Option<String>,
|
|
pub status: String,
|
|
pub download_count: i32,
|
|
pub rating_avg: Decimal,
|
|
pub rating_count: i32,
|
|
pub changelog: Option<String>,
|
|
pub created_at: DateTimeUtc,
|
|
pub updated_at: DateTimeUtc,
|
|
}
|
|
|
|
#[derive(Copy, Clone, Debug, EnumIter, DeriveRelation)]
|
|
pub enum Relation {
|
|
#[sea_orm(has_many = "super::market_review::Entity")]
|
|
MarketReview,
|
|
}
|
|
|
|
impl Related<super::market_review::Entity> for Entity {
|
|
fn to() -> RelationDef {
|
|
Relation::MarketReview.def()
|
|
}
|
|
}
|
|
|
|
impl ActiveModelBehavior for ActiveModel {}
|