mirror of
https://github.com/1Panel-dev/MaxKB.git
synced 2025-12-26 01:33:05 +00:00
fix: 邮箱设置
This commit is contained in:
parent
96135be28d
commit
c39221063e
|
|
@ -0,0 +1,31 @@
|
|||
# coding=utf-8
|
||||
"""
|
||||
@project: maxkb
|
||||
@Author:虎
|
||||
@file: system_management.py
|
||||
@date:2024/3/19 13:47
|
||||
@desc: 邮箱管理
|
||||
"""
|
||||
import uuid
|
||||
|
||||
from django.db import models
|
||||
|
||||
from common.mixins.app_model_mixin import AppModelMixin
|
||||
|
||||
|
||||
class SettingType(models.IntegerChoices):
|
||||
"""系统设置类型"""
|
||||
EMAIL = 0, '邮箱'
|
||||
|
||||
|
||||
class SystemSetting(AppModelMixin):
|
||||
"""
|
||||
系统设置
|
||||
"""
|
||||
type = models.IntegerField(primary_key=True, verbose_name='设置类型', max_length=5, choices=SettingType.choices,
|
||||
default=SettingType.EMAIL)
|
||||
|
||||
meta = models.JSONField(verbose_name="配置数据", default=dict)
|
||||
|
||||
class Meta:
|
||||
db_table = "system_setting"
|
||||
Loading…
Reference in New Issue