| | |
| | | * operator 操作人编号 |
| | | * activeTime 开卡时间 |
| | | */ |
| | | String protocol = po.getProtocol(); |
| | | String cardAddr = po.getCardAddr(); |
| | | Integer cardCost = po.getCardCost(); |
| | | Long originalCardId = po.getOriginalCardId(); |
| | |
| | | * 添加农户卡记录,退还金额作为当前余额 |
| | | */ |
| | | SeClientCard seClientCard = new SeClientCard(); |
| | | seClientCard.setProtocol(protocol); |
| | | seClientCard.setCardaddr(cardAddr); |
| | | seClientCard.setCardnum(cardNum); |
| | | seClientCard.setClientid(clientId); |
| | |
| | | * operator 操作人编号 |
| | | */ |
| | | |
| | | String protocol; |
| | | String cardAddr = po.getCardAddr(); |
| | | String clientNum = ""; |
| | | Long clientId = 0L; |
| | |
| | | clientNum = map.get("clientNum").toString(); |
| | | cardId = Long.parseLong(map.get("cardId").toString()); |
| | | clientId = Long.parseLong(map.get("clientId").toString()); |
| | | protocol = map.get("protocol").toString(); |
| | | |
| | | /** |
| | | * 如果是补卡调用的开卡且转移了退还金额,需修改挂失卡余额为0 |
| | |
| | | * 添加开卡记录,退还金额冲到新卡中 |
| | | */ |
| | | ActiveCard activeCard = new ActiveCard(); |
| | | activeCard.setProtocol(protocol); |
| | | activeCard.setCardAddr(cardAddr); |
| | | activeCard.setClientId(clientId); |
| | | activeCard.setOriginalCardId(cardId); |
| | |
| | | map_response.put("projectNo", projectNo); |
| | | map_response.put("orderNumber", orderNumber); |
| | | map_response.put("cardNum", cardNum); |
| | | map_response.put("protocol", protocol); |
| | | return BaseResponseUtils.buildSuccess(map_response) ; |
| | | } |
| | | |