重构数据

This commit is contained in:
2025-03-07 00:06:56 +08:00
parent 317f29b486
commit c95dafe14d
32 changed files with 219 additions and 215 deletions

21
task/schemas.py Normal file
View File

@@ -0,0 +1,21 @@
from ninja import Schema, ModelSchema
from .models import Tutorial
class TutorialSlim(Schema):
display: int
title: str
is_public: bool
class TutorialAll(ModelSchema):
class Meta:
model = Tutorial
fields = "__all__"
class TutorialIn(Schema):
display: int
title: str
content: str
is_public: bool = False