diff --git a/doc/SavingPot.py b/doc/SavingPot.py index ebea6c71..62008ffe 100644 --- a/doc/SavingPot.py +++ b/doc/SavingPot.py @@ -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, '修改时间'], + ] \ No newline at end of file