You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
596 B
19 lines
596 B
# -*- coding:utf-8 -*-
|
|
"""
|
|
@Created on : 2023/6/6 17:59
|
|
@Author: hxl
|
|
@Des:
|
|
"""
|
|
from tortoise import fields
|
|
from tortoise import models
|
|
|
|
|
|
class PlatformSecurity(models.Model):
|
|
reset_password_duration = fields.IntField(default=30, description='密码时效性(天)')
|
|
login_frozen_count = fields.IntField(default=0, description='几次登录失败后账号被冻结(0代表永不冻结)')
|
|
login_attempt_duration = fields.IntField(default=0, description='登录核验时长(秒)')
|
|
|
|
class Meta:
|
|
table = 'platform_security'
|
|
table_description = '密码安全等级表'
|