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.

8 lines
232 B

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'