This commit is contained in:
hujiabin 2024-10-09 19:14:17 +08:00
parent 9f92a03160
commit 458f8cc552

View File

@ -56,7 +56,7 @@ class SavingPot(object):
'response': [
_common.RspHead(),
['pagination', _common.Pagination(), '分页信息'],
['!rows', [_common.InGameMallGoods()], '记录列表']
['!rows', [RecordList()], '记录列表']
]
},
@ -71,3 +71,14 @@ class Info(object):
['draw_state', 0, '1:今日已领取或砸开 0:反之'],
['up_times', 0, '今日升阶次数'],
]
class RecordList(object):
def __init__(self):
self.fields = [
['account_id', 0, 'account_id'],
['way', 0, '1:draw 2:open'],
['amount', 0, '绑币数量'],
['createtime', 0, '创建时间'],
['modifytime', 0, '修改时间'],
]