fix: update body record list api
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2023-08-13 21:08:29 +08:00
parent 5ddf94aa82
commit 3a871e5c74
3 changed files with 10 additions and 4 deletions

View File

@@ -17,5 +17,9 @@ class BodyRecordOut(Schema):
update_time = fields.String(allow_none=True)
class BodyRecordsIn(Schema):
sort = fields.String()
class BodyRecordsOut(Schema):
records = fields.List(fields.Nested(BodyRecordOut))