15 lines
326 B
Python
15 lines
326 B
Python
from tortoise import Model, fields
|
|
from src.models import with_table_name
|
|
|
|
|
|
|
|
class BackResultIndicator(Model):
|
|
id = fields.IntField(pk=True, )
|
|
key = fields.CharField(max_length=25, null=True, )
|
|
indicator = fields.BinaryField(null=True, )
|
|
|
|
|
|
class Meta:
|
|
table = with_table_name("back_result_indicator")
|
|
|