Commit 705c2872 authored by libin's avatar libin

提现

parent d5717da8
......@@ -42,7 +42,10 @@ public class WalletCathAdminVo {
private Long finishTime;
@ApiModelProperty("提现单号")
private String withDrawOrderNo;
private String orderNo;
@ApiModelProperty("第三方单号")
private String cono;
@ApiModelProperty(value = "用户账号")
private String accountNumber;
......
package com.github.wxiaoqi.security.admin.vo;
import io.swagger.annotations.ApiModelProperty;
import lombok.AllArgsConstructor;
import lombok.Data;
import lombok.NoArgsConstructor;
import java.math.BigDecimal;
......@@ -12,6 +14,8 @@ import java.math.BigDecimal;
* @data 2019/7/18 10:50
*/
@Data
@AllArgsConstructor
@NoArgsConstructor
public class WalletDetailAdminVo {
private Integer id;
......
......@@ -397,6 +397,7 @@ public class MyWalletBiz extends BaseBiz<MyWalletMapper, MyWallet> implements In
detail.setItype(1);
//设置提现单号
detail.setWithDrawOrderNo(cath.getOrderNo());
detail.setCono(cath.getId().intValue());
detail.setBalance(balance);
detail.setAmount(realAmount);
detail.setSource(10);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment