MCPcopy Index your code
hub / github.com/1Panel-dev/MaxKB / SystemSetting

Class SystemSetting

apps/local_model/models/system_setting.py:24–34  ·  view source on GitHub ↗

系统设置

Source from the content-addressed store, hash-verified

22
23
24class SystemSetting(AppModelMixin):
25 """
26 系统设置
27 """
28 type = models.IntegerField(primary_key=True, verbose_name='设置类型', choices=SettingType.choices,
29 default=SettingType.EMAIL)
30
31 meta = models.JSONField(verbose_name="配置数据", default=dict)
32
33 class Meta:
34 db_table = "system_setting"

Callers 2

get_key_pair_by_sqlFunction · 0.90
get_key_pair_by_sqlFunction · 0.90

Calls

no outgoing calls

Tested by

no test coverage detected