|  |  |  | 
|---|
|  |  |  | MemberCoinAddressEntity memberCoinAddressEntity = new MemberCoinAddressEntity(); | 
|---|
|  |  |  | memberCoinAddressEntity.setAddress(address); | 
|---|
|  |  |  | memberCoinAddressEntity.setMemberId(memberId); | 
|---|
|  |  |  | memberCoinAddressEntity.setIsBiyict(isBiyict); | 
|---|
|  |  |  | memberCoinAddressEntity.setIsBiyict(MemberCoinAddressEntity.IS_BIYICT_NO); | 
|---|
|  |  |  | memberCoinAddressEntity.setSymbolscoinId(symbolscoinId); | 
|---|
|  |  |  | memberCoinAddressEntity.setLabel(remark); | 
|---|
|  |  |  | memberCoinAddressEntity.setSymbol(platformSymbolsCoinEntity.getName()); | 
|---|
|  |  |  | 
|---|
|  |  |  | Map<String, Object> columnMap = new HashMap<>(); | 
|---|
|  |  |  | columnMap.put("symbol", memberSubmitCoinApplyDto.getSymbol()); | 
|---|
|  |  |  | columnMap.put("address", memberSubmitCoinApplyDto.getAddress()); | 
|---|
|  |  |  | columnMap.put("is_biyict", MemberCoinAddressEntity.IS_BIYICT_YES); | 
|---|
|  |  |  | List<MemberCoinAddressEntity> selectByMap = memberCoinAddressDao.selectByMap(columnMap); | 
|---|
|  |  |  | if (CollUtil.isEmpty(selectByMap)) { | 
|---|
|  |  |  | memberCoinWithdrawEntity.setIsInside(MemberCoinWithdrawEntity.ISINSIDE_NO); | 
|---|
|  |  |  | 
|---|
|  |  |  | accountRecord.setContent("提币"); | 
|---|
|  |  |  | accountRecord.setMemberId(memberId); | 
|---|
|  |  |  | accountRecord.setAmount(coinNumber); | 
|---|
|  |  |  | accountRecord.setWithdrawId(memberCoinWithdrawEntity.getId()); | 
|---|
|  |  |  | accountRecord.setStatus(MemberAccountMoneyChange.STATUS_WAIT_INTEGER); | 
|---|
|  |  |  | accountRecord.setSymbol(memberSubmitCoinApplyDto.getSymbol()); | 
|---|
|  |  |  | accountRecord.setType(MemberAccountMoneyChange.TYPE_WALLET_COIN); | 
|---|