feat: add api of body record
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2023-08-12 20:00:38 +08:00
parent 5a83cea081
commit c30c644f7c
7 changed files with 103 additions and 8 deletions

View File

@@ -0,0 +1,25 @@
from apiflask import Schema
from apiflask import fields
class BodyRecordIn(Schema):
height = fields.Float()
weight = fields.Float()
bmi = fields.Float()
class BodyRecordOut(Schema):
record_id = fields.String(attribute='_id')
height = fields.Float()
weight = fields.Float()
bmi = fields.Float()
create_time = fields.String()
update_time = fields.String(allow_none=True)
class BodyRecordsIn(Schema):
user_id = fields.String()
class BodyRecordsOut(Schema):
records = fields.Nested(BodyRecordOut)