数据查询完善

This commit is contained in:
lhx
2025-09-29 17:27:45 +08:00
parent 8fe42e6fdd
commit 08faa06611
9 changed files with 29 additions and 34 deletions

View File

@@ -13,4 +13,4 @@ class Account(Base):
project_name = Column(String(1000), comment="项目名称")
created_at = Column(DateTime, server_default=func.now(), comment="创建时间")
updated_at = Column(DateTime, server_default=func.now(), onupdate=func.now(), comment="更新时间")
update_time = Column(String(1000), comment="更新时间跨度")
update_time = Column(String(1000), nullable=False, comment="更新时间跨度")