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:
Wu Clan
2025-06-24 17:34:18 +08:00
committed by GitHub
parent a2902bd23a
commit c84f0658fb
10 changed files with 140 additions and 128 deletions
+1
View File
@@ -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='排序')