| | |
| | | boolean isDebug = false;
|
| | | if (!isDebug) {
|
| | | long currentTime = System.currentTimeMillis();
|
| | | return currentTime - time <= 30000;
|
| | | return currentTime - time <= 3600000;
|
| | | }
|
| | | return true;
|
| | | }
|
| | |
| | | * 是否内部转账 Y-是N-不是 |
| | | */ |
| | | private String isInside; |
| | | |
| | | /** |
| | | * 收款方 |
| | | */ |
| | | private String usernameIn; |
| | | |
| | | } |
| | |
| | | |
| | | <select id="findMemberWithdrawCoinInPage" resultType="cc.mrbird.febs.dapp.vo.AdminMemberCoinWithdrawVo"> |
| | | SELECT |
| | | * |
| | | s.*, |
| | | (select a.username from dapp_member a where s.address = a.invite_id and s.is_inside = 'Y') usernameIn, |
| | | m.username username |
| | | FROM |
| | | member_coin_withdraw s |
| | | left join dapp_member m on m.id = s.member_id |
| | |
| | | totalRow: true, |
| | | cols: [[ |
| | | {field: 'username', title: '用户名', minWidth: 120, align: 'left', totalRowText: '合计'}, |
| | | {field: 'usernameIn', title: '收款方', minWidth: 120, align: 'left'}, |
| | | {field: 'isInside', title: '类型', |
| | | templet: function (d) { |
| | | if (d.isInside === 'Y') { |
| | |
| | | return '' |
| | | } |
| | | }, minWidth: 120, align: 'center', totalRow: true}, |
| | | {field: 'address', title: '提币地址', minWidth: 300, align: 'center'}, |
| | | {field: 'address', title: '提币地址', |
| | | templet: function (d) { |
| | | if (d.isInside === 'Y') { |
| | | return '' |
| | | } else if (d.isInside === 'N') { |
| | | return '<span>d.address</span>' |
| | | }else{ |
| | | return '' |
| | | } |
| | | }, minWidth: 300, align: 'center'}, |
| | | {field: 'createTime', title: '提币时间', minWidth: 180, align: 'center'}, |
| | | {title: '操作', |
| | | templet: function (d) { |