| | |
| | | private String remark; |
| | | @ApiModelProperty("提现状态(1=待处理,2=成功,3=失败)") |
| | | private Integer state; |
| | | @ApiModelProperty("已提现总金额") |
| | | private Double withdrawn; |
| | | @ApiModelProperty("处理中总金额") |
| | | private Double processing; |
| | | @ApiModelProperty("提现失败总金额") |
| | | private Double fail; |
| | | |
| | | public Integer getId() { |
| | | return id; |
| | |
| | | public void setState(Integer state) { |
| | | this.state = state; |
| | | } |
| | | |
| | | |
| | | public Double getWithdrawn() { |
| | | return withdrawn; |
| | | } |
| | | |
| | | public void setWithdrawn(Double withdrawn) { |
| | | this.withdrawn = withdrawn; |
| | | } |
| | | |
| | | public Double getProcessing() { |
| | | return processing; |
| | | } |
| | | |
| | | public void setProcessing(Double processing) { |
| | | this.processing = processing; |
| | | } |
| | | |
| | | public Double getFail() { |
| | | return fail; |
| | | } |
| | | |
| | | public void setFail(Double fail) { |
| | | this.fail = fail; |
| | | } |
| | | |
| | | @Override |
| | | public String toString() { |
| | | return "WithdrawalWarpper{" + |
| | |
| | | withdrawalWarpper.setRemark(null != map.get("remark") ? String.valueOf(map.get("remark")) : ""); |
| | | withdrawalWarpper.setState(null != map.get("state") ? Integer.valueOf(String.valueOf(map.get("state"))) : 0); |
| | | withdrawalWarpper.setInsertTime(null != map.get("insertTime") ? String.valueOf(map.get("insertTime")) : ""); |
| | | withdrawalWarpper.setWithdrawn(null != map.get("withdrawn") ? Double.valueOf(String.valueOf(map.get("withdrawn"))) : 0); |
| | | withdrawalWarpper.setProcessing(null != map.get("processing") ? Double.valueOf(String.valueOf(map.get("processing"))) : 0); |
| | | withdrawalWarpper.setFail(null != map.get("fail") ? Double.valueOf(String.valueOf(map.get("fail"))) : 0); |
| | | list.add(withdrawalWarpper); |
| | | } |
| | | } |