增加path字段
This commit is contained in:
@@ -9,6 +9,7 @@ class FunctionList(Base):
|
||||
id = Column(BigInteger, primary_key=True, index=True, autoincrement=True)
|
||||
function_name = Column(String(255), nullable=False, comment="功能名称")
|
||||
description = Column(String(1000), nullable=True, comment="描述")
|
||||
path = Column(String(500), nullable=True, comment="路径")
|
||||
|
||||
def to_dict(self):
|
||||
"""将模型实例转换为字典"""
|
||||
|
||||
Reference in New Issue
Block a user