day2作业笔记
模型models/articles.pyfrom tortoise import Model,fieldsclass Category(Model):idfields.IntField(pkTrue,auto_incrementTrue,description分类ID)namefields.CharField(max_length50,description分类名称)class Meta:tabledb_categoryclass Author(Model):idfields.IntFiel…
2026/7/22 9:22:36