AlipayEbppPdeductSignAddRequest.php
7.5 KB
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
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
<?php
/**
* ALIPAY API: alipay.ebpp.pdeduct.sign.add request
*
* @author auto create
* @since 1.0, 2018-05-16 11:50:00
*/
class AlipayEbppPdeductSignAddRequest
{
/**
* 机构签约代扣来源渠道
PUBLICPLATFORM:服务窗
**/
private $agentChannel;
/**
* 从服务窗发起则为publicId的值
**/
private $agentCode;
/**
* 户号,机构针对于每户的水、电都会有唯一的标识户号
**/
private $billKey;
/**
* 业务类型。
JF:缴水、电、燃气、固话宽带、有线电视、交通罚款费用
WUYE:缴物业费
HK:信用卡还款
TX:手机充值
IND: 保险
**/
private $bizType;
/**
* 支付宝缴费系统中的出账机构ID
**/
private $chargeInst;
/**
* 代扣产品码, 由技术同学分配。 目前在缴费业务场景中,传入INST_DIRECT_DEDUCT; 在保险业务场景中, 传入INSURANCE_MERCHANT_DEDUCT
**/
private $deductProdCode;
/**
* 签约类型可为空
**/
private $deductType;
/**
* 外部用户实名认证相关信息, 用于做签约时的实名校验。
注:
name: 姓名
cert_type: 身份证:IDENTITY_CARD、护照:PASSPORT、军官证:OFFICER_CARD、士兵证:SOLDIER_CARD、户口本:HOKOU等
cert_no: 证件号码
need_check_info取值 T/F,只有为T时才做强制校验。
mobile:手机号,目前暂不使用此字段做校验
min_age: 允许的最小买家年龄,min_age为整数,必须大于等于0.
**/
private $extUserInfo;
/**
* 扩展字段
**/
private $extendField;
/**
* 通知方式设置,可为空
**/
private $notifyConfig;
/**
* 外部产生的协议ID
**/
private $outAgreementId;
/**
* 户名,户主真实姓名
**/
private $ownerName;
/**
* 支付工具设置,目前可为空
**/
private $payConfig;
/**
* 用户签约时,跳转到支付宝独立密码校验页面,校验成功后会将token和对应的用户ID缓存下来,然后跳回到机构页面生成token带回给机构,机构签约时必须传入token
**/
private $payPasswordToken;
/**
* 商户ID
**/
private $pid;
/**
* 签约到期时间。空表示无限期,一期固定传空。
**/
private $signExpireDate;
/**
* 业务子类型。
WATER:缴水费
ELECTRIC:缴电费
GAS:缴燃气费
COMMUN:缴固话宽带
CATV:缴有线电视费
TRAFFIC:缴交通罚款
WUYE:缴物业费
HK:信用卡还款
CZ:手机充值
CAR:车险
LIFE:寿险
HEALTH:健康险
**/
private $subBizType;
/**
* 用户ID
**/
private $userId;
private $apiParas = array();
private $terminalType;
private $terminalInfo;
private $prodCode;
private $apiVersion="1.0";
private $notifyUrl;
private $returnUrl;
private $needEncrypt=false;
public function setAgentChannel($agentChannel)
{
$this->agentChannel = $agentChannel;
$this->apiParas["agent_channel"] = $agentChannel;
}
public function getAgentChannel()
{
return $this->agentChannel;
}
public function setAgentCode($agentCode)
{
$this->agentCode = $agentCode;
$this->apiParas["agent_code"] = $agentCode;
}
public function getAgentCode()
{
return $this->agentCode;
}
public function setBillKey($billKey)
{
$this->billKey = $billKey;
$this->apiParas["bill_key"] = $billKey;
}
public function getBillKey()
{
return $this->billKey;
}
public function setBizType($bizType)
{
$this->bizType = $bizType;
$this->apiParas["biz_type"] = $bizType;
}
public function getBizType()
{
return $this->bizType;
}
public function setChargeInst($chargeInst)
{
$this->chargeInst = $chargeInst;
$this->apiParas["charge_inst"] = $chargeInst;
}
public function getChargeInst()
{
return $this->chargeInst;
}
public function setDeductProdCode($deductProdCode)
{
$this->deductProdCode = $deductProdCode;
$this->apiParas["deduct_prod_code"] = $deductProdCode;
}
public function getDeductProdCode()
{
return $this->deductProdCode;
}
public function setDeductType($deductType)
{
$this->deductType = $deductType;
$this->apiParas["deduct_type"] = $deductType;
}
public function getDeductType()
{
return $this->deductType;
}
public function setExtUserInfo($extUserInfo)
{
$this->extUserInfo = $extUserInfo;
$this->apiParas["ext_user_info"] = $extUserInfo;
}
public function getExtUserInfo()
{
return $this->extUserInfo;
}
public function setExtendField($extendField)
{
$this->extendField = $extendField;
$this->apiParas["extend_field"] = $extendField;
}
public function getExtendField()
{
return $this->extendField;
}
public function setNotifyConfig($notifyConfig)
{
$this->notifyConfig = $notifyConfig;
$this->apiParas["notify_config"] = $notifyConfig;
}
public function getNotifyConfig()
{
return $this->notifyConfig;
}
public function setOutAgreementId($outAgreementId)
{
$this->outAgreementId = $outAgreementId;
$this->apiParas["out_agreement_id"] = $outAgreementId;
}
public function getOutAgreementId()
{
return $this->outAgreementId;
}
public function setOwnerName($ownerName)
{
$this->ownerName = $ownerName;
$this->apiParas["owner_name"] = $ownerName;
}
public function getOwnerName()
{
return $this->ownerName;
}
public function setPayConfig($payConfig)
{
$this->payConfig = $payConfig;
$this->apiParas["pay_config"] = $payConfig;
}
public function getPayConfig()
{
return $this->payConfig;
}
public function setPayPasswordToken($payPasswordToken)
{
$this->payPasswordToken = $payPasswordToken;
$this->apiParas["pay_password_token"] = $payPasswordToken;
}
public function getPayPasswordToken()
{
return $this->payPasswordToken;
}
public function setPid($pid)
{
$this->pid = $pid;
$this->apiParas["pid"] = $pid;
}
public function getPid()
{
return $this->pid;
}
public function setSignExpireDate($signExpireDate)
{
$this->signExpireDate = $signExpireDate;
$this->apiParas["sign_expire_date"] = $signExpireDate;
}
public function getSignExpireDate()
{
return $this->signExpireDate;
}
public function setSubBizType($subBizType)
{
$this->subBizType = $subBizType;
$this->apiParas["sub_biz_type"] = $subBizType;
}
public function getSubBizType()
{
return $this->subBizType;
}
public function setUserId($userId)
{
$this->userId = $userId;
$this->apiParas["user_id"] = $userId;
}
public function getUserId()
{
return $this->userId;
}
public function getApiMethodName()
{
return "alipay.ebpp.pdeduct.sign.add";
}
public function setNotifyUrl($notifyUrl)
{
$this->notifyUrl=$notifyUrl;
}
public function getNotifyUrl()
{
return $this->notifyUrl;
}
public function setReturnUrl($returnUrl)
{
$this->returnUrl=$returnUrl;
}
public function getReturnUrl()
{
return $this->returnUrl;
}
public function getApiParas()
{
return $this->apiParas;
}
public function getTerminalType()
{
return $this->terminalType;
}
public function setTerminalType($terminalType)
{
$this->terminalType = $terminalType;
}
public function getTerminalInfo()
{
return $this->terminalInfo;
}
public function setTerminalInfo($terminalInfo)
{
$this->terminalInfo = $terminalInfo;
}
public function getProdCode()
{
return $this->prodCode;
}
public function setProdCode($prodCode)
{
$this->prodCode = $prodCode;
}
public function setApiVersion($apiVersion)
{
$this->apiVersion=$apiVersion;
}
public function getApiVersion()
{
return $this->apiVersion;
}
public function setNeedEncrypt($needEncrypt)
{
$this->needEncrypt=$needEncrypt;
}
public function getNeedEncrypt()
{
return $this->needEncrypt;
}
}