This commit is contained in:
邹宗楠
2022-07-06 16:48:43 +08:00
parent 07373a7e49
commit c47a130bc0
15 changed files with 427 additions and 9 deletions

View File

@@ -45,3 +45,21 @@ func TestCreatePay3(t *testing.T) {
}
t.Log(utils.Format4Output(result, false))
}
// 提现操作
func TestCreatePay4(t *testing.T) {
data, err := api.Withdrawal4AliPay(&WithdrawalParam{
OutBizNo: "199308263974Dx1716",
TransAmount: 0.10,
ProductCode: "",
BizScene: "",
OrderTitle: "冲天猴退款",
PayeeInfo: &PayeeInfoParam{
Identity: "18981810340",
Name: "刘磊",
},
Remark: "测试退款",
})
t.Log("data===========", utils.Format4Output(data, false))
t.Log("err===========", err)
}