mirror of
https://github.com/fastapi-practices/fastapi-best-architecture.git
synced 2026-09-21 13:12:24 +00:00
Update the dict pagination query parameters (#689)
* Update the dict pagination query parameters * Update the dict pagination query parameters * Update version
This commit is contained in:
@@ -21,6 +21,7 @@ class DictData(Base):
|
||||
__tablename__ = 'sys_dict_data'
|
||||
|
||||
id: Mapped[id_key] = mapped_column(init=False)
|
||||
type_code: Mapped[str] = mapped_column(String(32), comment='对应的字典类型编码')
|
||||
label: Mapped[str] = mapped_column(String(32), comment='字典标签')
|
||||
value: Mapped[str] = mapped_column(String(32), comment='字典值')
|
||||
sort: Mapped[int] = mapped_column(default=0, comment='排序')
|
||||
|
||||
Reference in New Issue
Block a user