后端开发完成

This commit is contained in:
Your Name
2026-01-26 18:21:34 +08:00
parent 40d2f3f6ac
commit b3876bba89
64 changed files with 1736 additions and 0 deletions
+17
View File
@@ -0,0 +1,17 @@
from pydantic import BaseModel
from datetime import datetime
class ProjectHistoryResponse(BaseModel):
"""项目历史记录响应模型"""
id: int
project_id: int
changed_by: int
change_field: str
old_value: str
new_value: str
change_description: str
created_at: datetime
class Config:
from_attributes = True