Files
long2ice 1118e990a9 Sync pro
2021-05-01 20:45:28 +08:00

10 lines
214 B
Python

from tortoise import Model, fields
class AbstractAdmin(Model):
username = fields.CharField(max_length=50, unique=True)
password = fields.CharField(max_length=200)
class Meta:
abstract = True