Files
xsl_node/backend/app/schemas/project_history.py
T
2026-01-26 18:21:34 +08:00

18 lines
364 B
Python

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