- 创建 erp-plugin-assessment cdylib crate - 实现 Guest trait(init/on_tenant_created/handle_event) - on_tenant_created 自动插入 PHQ-9 抑郁筛查量表 - plugin.toml 声明 2 实体 + 4 权限 + 触发事件
14 lines
280 B
TOML
14 lines
280 B
TOML
[package]
|
||
name = "erp-plugin-assessment"
|
||
version = "0.1.0"
|
||
edition = "2024"
|
||
description = "标准化医学评估量表插件(PHQ-9、GAD-7 等)"
|
||
|
||
[lib]
|
||
crate-type = ["cdylib"]
|
||
|
||
[dependencies]
|
||
wit-bindgen = "0.55"
|
||
serde = { workspace = true }
|
||
serde_json = { workspace = true }
|