UnisKB/apps/local_model/models/system_setting.py

35 lines
757 B
Python
Raw Normal View History

2025-11-05 11:05:26 +00:00
# coding=utf-8
"""
@project: maxkb
@Author
@file system_management.py
@date2024/3/19 13:47
@desc: 邮箱管理
"""
from django.db import models
from common.mixins.app_model_mixin import AppModelMixin
class SettingType(models.IntegerChoices):
"""系统设置类型"""
EMAIL = 0, '邮箱'
RSA = 1, "私钥秘钥"
LOG = 2, "日志清理时间"
class SystemSetting(AppModelMixin):
"""
系统设置
"""
type = models.IntegerField(primary_key=True, verbose_name='设置类型', choices=SettingType.choices,
default=SettingType.EMAIL)
meta = models.JSONField(verbose_name="配置数据", default=dict)
class Meta:
db_table = "system_setting"