This commit is contained in:
2025-09-08 16:36:23 +08:00
parent 4f614c35dd
commit 4035023a11

View File

@@ -0,0 +1,12 @@
from sqlmodel import Field, SQLModel
from common.core.models import SnowflakeBase
class term_model(SnowflakeBase, table=True):
__tablename__ = "terms"
term: str = Field(max_length=255)
definition: str = Field(max_length=255)
domain: str = Field(max_length=255)
create_time: int = Field(default=0)