from tortoise import fields, models class DrugTag(models.Model): name = fields.CharField(max_length = 100, description = '药剂名称') tags = fields.CharField(max_length = 255) class Meta: table = 'drug_tags'