Newer
Older
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
<?php
namespace Qingrong\Tool\Bean\MiniApplet;
use Qingrong\Tool\Bean\ToolBaseBean;
class QueryWithdrawOrderParamBean extends ToolBaseBean
{
/**
* 小程序第三方平台应用 id。服务商发起提现请求的必填
* @var string $thirdpartyId
*/
private $thirdpartyId = "";
/**
* 小程序的 app_id;除服务商为自己提现外,其他情况必填
* @var string $appId
*/
private $appId = "";
/**
* 进件完成返回的商户号
* @var string $merchantUid
*/
private $merchantUid = "";
/**
* 提现渠道枚举值:alipay: 支付宝 wx: 微信 hz: 抖音支付 yeepay: 易宝 yzt: 担保支付企业版聚合账户
* @var string $channelType
*/
private $channelType = "";
/**
* 外部单号(开发者侧);唯一标识一笔提现请求
* @var string $outOrderId
*/
private $outOrderId = "";
/**
* @return string
*/
public function getThirdpartyId(): string
{
return $this->thirdpartyId;
}
/**
* @param string $thirdpartyId
*/
public function setThirdpartyId(string $thirdpartyId)
{
$this->thirdpartyId = $thirdpartyId;
}
/**
* @return string
*/
public function getAppId(): string
{
return $this->appId;
}
/**
* @param string $appId
*/
public function setAppId(string $appId)
{
$this->appId = $appId;
}
/**
* @return string
*/
public function getMerchantUid(): string
{
return $this->merchantUid;
}
/**
* @param string $merchantUid
*/
public function setMerchantUid(string $merchantUid)
{
$this->merchantUid = $merchantUid;
}
/**
* @return string
*/
public function getChannelType(): string
{
return $this->channelType;
}
/**
* @param string $channelType
*/
public function setChannelType(string $channelType)
{
$this->channelType = $channelType;
}
/**
* @return string
*/
public function getOutOrderId(): string
{
return $this->outOrderId;
}
/**
* @param string $outOrderId
*/
public function setOutOrderId(string $outOrderId)
{
$this->outOrderId = $outOrderId;
}
}