1
This commit is contained in:
parent
9f92a03160
commit
458f8cc552
@ -56,7 +56,7 @@ class SavingPot(object):
|
|||||||
'response': [
|
'response': [
|
||||||
_common.RspHead(),
|
_common.RspHead(),
|
||||||
['pagination', _common.Pagination(), '分页信息'],
|
['pagination', _common.Pagination(), '分页信息'],
|
||||||
['!rows', [_common.InGameMallGoods()], '记录列表']
|
['!rows', [RecordList()], '记录列表']
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
|
||||||
@ -71,3 +71,14 @@ class Info(object):
|
|||||||
['draw_state', 0, '1:今日已领取或砸开 0:反之'],
|
['draw_state', 0, '1:今日已领取或砸开 0:反之'],
|
||||||
['up_times', 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, '修改时间'],
|
||||||
|
]
|
Loading…
x
Reference in New Issue
Block a user