fix comments

This commit is contained in:
jxxghp
2023-06-26 11:51:54 +08:00
parent 0fd26dc708
commit 178ac334a0
13 changed files with 151 additions and 1 deletions

View File

@ -9,7 +9,9 @@ class SystemConfig(Base):
配置表
"""
id = Column(Integer, Sequence('id'), primary_key=True, index=True)
# 主键
key = Column(String, index=True)
# 值
value = Column(String, nullable=True)
@staticmethod