数据库模型
标签下的所有文章
2 篇文章
返回所有标签使用Tortoise-ORM和FastAPI构建评论系统
在models.py中定义了Comment模型,包含id、content、created_at、updated_at字段,并与User和Article模型建立外键关系。schemas.py中定义了CommentBase、CommentCreate、CommentUpdate和CommentResponse等Pydantic模型,用于数据验证和响应。路由层实现 …
阅读更多
cmdragon
