| | |
| | | //转出账户生成一条记录 |
| | | MemberCoinWithdrawEntity memberCoinWithdrawEntity = new MemberCoinWithdrawEntity(); |
| | | memberCoinWithdrawEntity.setAddress(address); |
| | | memberCoinWithdrawEntity.setAmount(balance.negate()); |
| | | memberCoinWithdrawEntity.setAmount(balance); |
| | | memberCoinWithdrawEntity.setFeeAmount(serviceFee); |
| | | if(1 == apiTransferOutsideDto.getType()){ |
| | | memberCoinWithdrawEntity.setTag("银行卡"); |
| | |
| | | @ApiModelProperty(value = "地址") |
| | | private String address; |
| | | |
| | | @ApiModelProperty(value = "地址(没有隐藏)") |
| | | private String addressClear; |
| | | |
| | | @ApiModelProperty(value = "地址类型") |
| | | private String type; |
| | | |
| | |
| | | |
| | | @ApiModelProperty(value = "银行卡号") |
| | | private String cardCode; |
| | | |
| | | @ApiModelProperty(value = "银行卡号(不隐藏)") |
| | | private String cardCodeClear; |
| | | } |
| | |
| | | <select id="selectBankListByMemberId" resultType="cc.mrbird.febs.dapp.vo.ApiBankListVo"> |
| | | select |
| | | concat(left(a.card_code,4), '******', right(a.card_code,4)) cardCode, |
| | | a.card_code cardCodeClear, |
| | | a.member_name memberName, |
| | | a.id id |
| | | from dapp_bank a |
| | |
| | | <select id="selectByMemberId" resultType="cc.mrbird.febs.dapp.vo.ApiAddressInfoVo"> |
| | | select |
| | | concat(left(a.address,3), '******', right(a.address,3)) address, |
| | | a.address addressClear, |
| | | a.type type, |
| | | a.id id |
| | | from dapp_member_address a |
| | |
| | | <div class="layui-fluid layui-anim febs-anim" id="febs-member-withDraw" lay-title="用户列表"> |
| | | <div class="layui-fluid layui-anim febs-anim" id="febs-member-withDraw" lay-title="列表"> |
| | | <div class="layui-row febs-container"> |
| | | <div class="layui-col-md12"> |
| | | <div class="layui-card"> |
| | |
| | | if (d.isInside === 'Y') { |
| | | return '' |
| | | } else if (d.isInside === 'N') { |
| | | return '<span>d.address</span>' |
| | | return '<span>('+d.tag+')'+d.address+'</span>' |
| | | }else{ |
| | | return '' |
| | | } |