feat: 互动模块相关接口
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2023-09-18 16:29:24 +08:00
parent 73f6470559
commit 433cd7ca74
4 changed files with 45 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
from apiflask import Schema
from apiflask import fields
class InteractionIn(Schema):
category = fields.Integer()
receiver_id = fields.String()
related_party_id = fields.String(allow_none=True)
comment = fields.String(allow_none=True)