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

This commit is contained in:
2023-09-20 14:22:39 +08:00
parent 001722e195
commit f9680363f4
2 changed files with 15 additions and 1 deletions

View File

@@ -12,6 +12,10 @@ class BodyRecordIdIn(Schema):
record_id = fields.String(required=True)
class BodyRecordCountOut(Schema):
count = fields.Integer()
class BodyRecordOut(Schema):
record_id = fields.String(attribute='_id')
height = fields.Float()