feat: 实现模特管理功能

- 新增模特数据模型和数据库表结构
- 实现模特的完整CRUD操作
- 添加模特照片管理功能
- 实现素材与模特关联功能
- 创建模特管理前端界面
- 集成到主应用导航和路由
- 修复数据库连接死锁问题

功能特性:
- 模特基本信息管理(姓名、艺名、性别、年龄等)
- 照片管理和封面设置
- 标签系统
- 状态管理(活跃、不活跃、退役、暂停)
- 评分系统
- 搜索和过滤功能
- 素材关联功能
This commit is contained in:
imeepos
2025-07-14 01:39:14 +08:00
parent 38ef546c76
commit 5cf1f8bfca
28 changed files with 4131 additions and 44 deletions

View File

@@ -1,2 +1,3 @@
pub mod project;
pub mod material;
pub mod model;