This commit is contained in:
2025-08-28 00:55:35 +08:00
commit 410f54a65e
93 changed files with 9863 additions and 0 deletions

12
backend/src/models/mod.rs Normal file
View File

@ -0,0 +1,12 @@
pub mod user;
pub mod refresh_token;
pub mod role;
pub mod menu;
pub mod user_role;
pub mod role_menu;
pub mod department;
pub mod user_department;
pub mod request_log;
// 新增岗位与用户岗位关联模型
pub mod position;
pub mod user_position;