AlipaySecurityRiskDetectRequest.php 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998
  1. <?php
  2. /**
  3. * ALIPAY API: alipay.security.risk.detect request
  4. *
  5. * @author auto create
  6. * @since 1.0, 2019-03-08 15:29:11
  7. */
  8. class AlipaySecurityRiskDetectRequest
  9. {
  10. /**
  11. * 买家账户编号
  12. **/
  13. private $buyerAccountNo;
  14. /**
  15. * 买家绑定银行卡号
  16. **/
  17. private $buyerBindBankcard;
  18. /**
  19. * 买家绑定银行卡的卡类型
  20. **/
  21. private $buyerBindBankcardType;
  22. /**
  23. * 买家绑定手机号
  24. **/
  25. private $buyerBindMobile;
  26. /**
  27. * 买家账户在商家的等级,范围:VIP(高级买家), NORMAL(普通买家)。为空默认NORMAL
  28. **/
  29. private $buyerGrade;
  30. /**
  31. * 买家证件号码
  32. **/
  33. private $buyerIdentityNo;
  34. /**
  35. * 买家证件类型
  36. **/
  37. private $buyerIdentityType;
  38. /**
  39. * 买家真实姓名
  40. **/
  41. private $buyerRealName;
  42. /**
  43. * 买家注册时间
  44. **/
  45. private $buyerRegDate;
  46. /**
  47. * 买家注册时留的Email
  48. **/
  49. private $buyerRegEmail;
  50. /**
  51. * 买家注册手机号
  52. **/
  53. private $buyerRegMobile;
  54. /**
  55. * 买家业务处理时使用的银行卡号
  56. **/
  57. private $buyerSceneBankcard;
  58. /**
  59. * 买家业务处理时使用的银行卡类型
  60. **/
  61. private $buyerSceneBankcardType;
  62. /**
  63. * 买家业务处理时使用的邮箱
  64. **/
  65. private $buyerSceneEmail;
  66. /**
  67. * 买家业务处理时使用的手机号
  68. **/
  69. private $buyerSceneMobile;
  70. /**
  71. * 币种
  72. **/
  73. private $currency;
  74. /**
  75. * 客户端的基带版本
  76. **/
  77. private $envClientBaseBand;
  78. /**
  79. * 客户端连接的基站信息,格式为:CELLID^LAC
  80. **/
  81. private $envClientBaseStation;
  82. /**
  83. * 客户端的经纬度坐标,格式为:精度^维度
  84. **/
  85. private $envClientCoordinates;
  86. /**
  87. * 操作的客户端的imei
  88. **/
  89. private $envClientImei;
  90. /**
  91. * 操作的客户端IMSI识别码
  92. **/
  93. private $envClientImsi;
  94. /**
  95. * IOS设备的UDID
  96. **/
  97. private $envClientIosUdid;
  98. /**
  99. * 操作的客户端ip
  100. **/
  101. private $envClientIp;
  102. /**
  103. * 操作的客户端mac
  104. **/
  105. private $envClientMac;
  106. /**
  107. * 操作的客户端分辨率,格式为:水平像素^垂直像素;如:800^600
  108. **/
  109. private $envClientScreen;
  110. /**
  111. * 客户端设备的统一识别码UUID
  112. **/
  113. private $envClientUuid;
  114. /**
  115. * 订单产品数量,购买产品的数量(不可为小数)
  116. **/
  117. private $itemQuantity;
  118. /**
  119. * 订单产品单价,取值范围为[0.01,100000000.00],精确到小数点后两位。 curren...
  120. **/
  121. private $itemUnitPrice;
  122. /**
  123. * JS SDK生成的 tokenID
  124. **/
  125. private $jsTokenId;
  126. /**
  127. * 订单总金额,取值范围为[0.01,100000000.00],精确到小数点后两位。
  128. **/
  129. private $orderAmount;
  130. /**
  131. * 订单商品所在类目
  132. **/
  133. private $orderCategory;
  134. /**
  135. * 订单下单时间
  136. **/
  137. private $orderCredateTime;
  138. /**
  139. * 订单商品所在城市
  140. **/
  141. private $orderItemCity;
  142. /**
  143. * 订单产品名称
  144. **/
  145. private $orderItemName;
  146. /**
  147. * 商户订单唯一标识号
  148. **/
  149. private $orderNo;
  150. /**
  151. * 签约的支付宝账号对应的支付宝唯一用户号
  152. **/
  153. private $partnerId;
  154. /**
  155. * 订单收货人地址
  156. **/
  157. private $receiverAddress;
  158. /**
  159. * 订单收货人地址城市
  160. **/
  161. private $receiverCity;
  162. /**
  163. * 订单收货人地址所在区
  164. **/
  165. private $receiverDistrict;
  166. /**
  167. * 订单收货人邮箱
  168. **/
  169. private $receiverEmail;
  170. /**
  171. * 订单收货人手机
  172. **/
  173. private $receiverMobile;
  174. /**
  175. * 订单收货人姓名
  176. **/
  177. private $receiverName;
  178. /**
  179. * 订单收货人地址省份
  180. **/
  181. private $receiverState;
  182. /**
  183. * 订单收货人地址邮编
  184. **/
  185. private $receiverZip;
  186. /**
  187. * 场景编码
  188. **/
  189. private $sceneCode;
  190. /**
  191. * 卖家账户编号
  192. **/
  193. private $sellerAccountNo;
  194. /**
  195. * 卖家绑定银行卡号
  196. **/
  197. private $sellerBindBankcard;
  198. /**
  199. * 卖家绑定的银行卡的卡类型
  200. **/
  201. private $sellerBindBankcardType;
  202. /**
  203. * 卖家绑定手机号
  204. **/
  205. private $sellerBindMobile;
  206. /**
  207. * 卖家证件号码
  208. **/
  209. private $sellerIdentityNo;
  210. /**
  211. * 卖家证件类型
  212. **/
  213. private $sellerIdentityType;
  214. /**
  215. * 卖家真实姓名
  216. **/
  217. private $sellerRealName;
  218. /**
  219. * 卖家注册时间,格式为:yyyy-MM-dd。
  220. **/
  221. private $sellerRegDate;
  222. /**
  223. * 卖家注册Email
  224. **/
  225. private $sellerRegEmail;
  226. /**
  227. * 卖家注册手机号
  228. **/
  229. private $sellerRegMoile;
  230. /**
  231. * 订单物流方式
  232. **/
  233. private $transportType;
  234. private $apiParas = array();
  235. private $terminalType;
  236. private $terminalInfo;
  237. private $prodCode;
  238. private $apiVersion="1.0";
  239. private $notifyUrl;
  240. private $returnUrl;
  241. private $needEncrypt=false;
  242. public function setBuyerAccountNo($buyerAccountNo)
  243. {
  244. $this->buyerAccountNo = $buyerAccountNo;
  245. $this->apiParas["buyer_account_no"] = $buyerAccountNo;
  246. }
  247. public function getBuyerAccountNo()
  248. {
  249. return $this->buyerAccountNo;
  250. }
  251. public function setBuyerBindBankcard($buyerBindBankcard)
  252. {
  253. $this->buyerBindBankcard = $buyerBindBankcard;
  254. $this->apiParas["buyer_bind_bankcard"] = $buyerBindBankcard;
  255. }
  256. public function getBuyerBindBankcard()
  257. {
  258. return $this->buyerBindBankcard;
  259. }
  260. public function setBuyerBindBankcardType($buyerBindBankcardType)
  261. {
  262. $this->buyerBindBankcardType = $buyerBindBankcardType;
  263. $this->apiParas["buyer_bind_bankcard_type"] = $buyerBindBankcardType;
  264. }
  265. public function getBuyerBindBankcardType()
  266. {
  267. return $this->buyerBindBankcardType;
  268. }
  269. public function setBuyerBindMobile($buyerBindMobile)
  270. {
  271. $this->buyerBindMobile = $buyerBindMobile;
  272. $this->apiParas["buyer_bind_mobile"] = $buyerBindMobile;
  273. }
  274. public function getBuyerBindMobile()
  275. {
  276. return $this->buyerBindMobile;
  277. }
  278. public function setBuyerGrade($buyerGrade)
  279. {
  280. $this->buyerGrade = $buyerGrade;
  281. $this->apiParas["buyer_grade"] = $buyerGrade;
  282. }
  283. public function getBuyerGrade()
  284. {
  285. return $this->buyerGrade;
  286. }
  287. public function setBuyerIdentityNo($buyerIdentityNo)
  288. {
  289. $this->buyerIdentityNo = $buyerIdentityNo;
  290. $this->apiParas["buyer_identity_no"] = $buyerIdentityNo;
  291. }
  292. public function getBuyerIdentityNo()
  293. {
  294. return $this->buyerIdentityNo;
  295. }
  296. public function setBuyerIdentityType($buyerIdentityType)
  297. {
  298. $this->buyerIdentityType = $buyerIdentityType;
  299. $this->apiParas["buyer_identity_type"] = $buyerIdentityType;
  300. }
  301. public function getBuyerIdentityType()
  302. {
  303. return $this->buyerIdentityType;
  304. }
  305. public function setBuyerRealName($buyerRealName)
  306. {
  307. $this->buyerRealName = $buyerRealName;
  308. $this->apiParas["buyer_real_name"] = $buyerRealName;
  309. }
  310. public function getBuyerRealName()
  311. {
  312. return $this->buyerRealName;
  313. }
  314. public function setBuyerRegDate($buyerRegDate)
  315. {
  316. $this->buyerRegDate = $buyerRegDate;
  317. $this->apiParas["buyer_reg_date"] = $buyerRegDate;
  318. }
  319. public function getBuyerRegDate()
  320. {
  321. return $this->buyerRegDate;
  322. }
  323. public function setBuyerRegEmail($buyerRegEmail)
  324. {
  325. $this->buyerRegEmail = $buyerRegEmail;
  326. $this->apiParas["buyer_reg_email"] = $buyerRegEmail;
  327. }
  328. public function getBuyerRegEmail()
  329. {
  330. return $this->buyerRegEmail;
  331. }
  332. public function setBuyerRegMobile($buyerRegMobile)
  333. {
  334. $this->buyerRegMobile = $buyerRegMobile;
  335. $this->apiParas["buyer_reg_mobile"] = $buyerRegMobile;
  336. }
  337. public function getBuyerRegMobile()
  338. {
  339. return $this->buyerRegMobile;
  340. }
  341. public function setBuyerSceneBankcard($buyerSceneBankcard)
  342. {
  343. $this->buyerSceneBankcard = $buyerSceneBankcard;
  344. $this->apiParas["buyer_scene_bankcard"] = $buyerSceneBankcard;
  345. }
  346. public function getBuyerSceneBankcard()
  347. {
  348. return $this->buyerSceneBankcard;
  349. }
  350. public function setBuyerSceneBankcardType($buyerSceneBankcardType)
  351. {
  352. $this->buyerSceneBankcardType = $buyerSceneBankcardType;
  353. $this->apiParas["buyer_scene_bankcard_type"] = $buyerSceneBankcardType;
  354. }
  355. public function getBuyerSceneBankcardType()
  356. {
  357. return $this->buyerSceneBankcardType;
  358. }
  359. public function setBuyerSceneEmail($buyerSceneEmail)
  360. {
  361. $this->buyerSceneEmail = $buyerSceneEmail;
  362. $this->apiParas["buyer_scene_email"] = $buyerSceneEmail;
  363. }
  364. public function getBuyerSceneEmail()
  365. {
  366. return $this->buyerSceneEmail;
  367. }
  368. public function setBuyerSceneMobile($buyerSceneMobile)
  369. {
  370. $this->buyerSceneMobile = $buyerSceneMobile;
  371. $this->apiParas["buyer_scene_mobile"] = $buyerSceneMobile;
  372. }
  373. public function getBuyerSceneMobile()
  374. {
  375. return $this->buyerSceneMobile;
  376. }
  377. public function setCurrency($currency)
  378. {
  379. $this->currency = $currency;
  380. $this->apiParas["currency"] = $currency;
  381. }
  382. public function getCurrency()
  383. {
  384. return $this->currency;
  385. }
  386. public function setEnvClientBaseBand($envClientBaseBand)
  387. {
  388. $this->envClientBaseBand = $envClientBaseBand;
  389. $this->apiParas["env_client_base_band"] = $envClientBaseBand;
  390. }
  391. public function getEnvClientBaseBand()
  392. {
  393. return $this->envClientBaseBand;
  394. }
  395. public function setEnvClientBaseStation($envClientBaseStation)
  396. {
  397. $this->envClientBaseStation = $envClientBaseStation;
  398. $this->apiParas["env_client_base_station"] = $envClientBaseStation;
  399. }
  400. public function getEnvClientBaseStation()
  401. {
  402. return $this->envClientBaseStation;
  403. }
  404. public function setEnvClientCoordinates($envClientCoordinates)
  405. {
  406. $this->envClientCoordinates = $envClientCoordinates;
  407. $this->apiParas["env_client_coordinates"] = $envClientCoordinates;
  408. }
  409. public function getEnvClientCoordinates()
  410. {
  411. return $this->envClientCoordinates;
  412. }
  413. public function setEnvClientImei($envClientImei)
  414. {
  415. $this->envClientImei = $envClientImei;
  416. $this->apiParas["env_client_imei"] = $envClientImei;
  417. }
  418. public function getEnvClientImei()
  419. {
  420. return $this->envClientImei;
  421. }
  422. public function setEnvClientImsi($envClientImsi)
  423. {
  424. $this->envClientImsi = $envClientImsi;
  425. $this->apiParas["env_client_imsi"] = $envClientImsi;
  426. }
  427. public function getEnvClientImsi()
  428. {
  429. return $this->envClientImsi;
  430. }
  431. public function setEnvClientIosUdid($envClientIosUdid)
  432. {
  433. $this->envClientIosUdid = $envClientIosUdid;
  434. $this->apiParas["env_client_ios_udid"] = $envClientIosUdid;
  435. }
  436. public function getEnvClientIosUdid()
  437. {
  438. return $this->envClientIosUdid;
  439. }
  440. public function setEnvClientIp($envClientIp)
  441. {
  442. $this->envClientIp = $envClientIp;
  443. $this->apiParas["env_client_ip"] = $envClientIp;
  444. }
  445. public function getEnvClientIp()
  446. {
  447. return $this->envClientIp;
  448. }
  449. public function setEnvClientMac($envClientMac)
  450. {
  451. $this->envClientMac = $envClientMac;
  452. $this->apiParas["env_client_mac"] = $envClientMac;
  453. }
  454. public function getEnvClientMac()
  455. {
  456. return $this->envClientMac;
  457. }
  458. public function setEnvClientScreen($envClientScreen)
  459. {
  460. $this->envClientScreen = $envClientScreen;
  461. $this->apiParas["env_client_screen"] = $envClientScreen;
  462. }
  463. public function getEnvClientScreen()
  464. {
  465. return $this->envClientScreen;
  466. }
  467. public function setEnvClientUuid($envClientUuid)
  468. {
  469. $this->envClientUuid = $envClientUuid;
  470. $this->apiParas["env_client_uuid"] = $envClientUuid;
  471. }
  472. public function getEnvClientUuid()
  473. {
  474. return $this->envClientUuid;
  475. }
  476. public function setItemQuantity($itemQuantity)
  477. {
  478. $this->itemQuantity = $itemQuantity;
  479. $this->apiParas["item_quantity"] = $itemQuantity;
  480. }
  481. public function getItemQuantity()
  482. {
  483. return $this->itemQuantity;
  484. }
  485. public function setItemUnitPrice($itemUnitPrice)
  486. {
  487. $this->itemUnitPrice = $itemUnitPrice;
  488. $this->apiParas["item_unit_price"] = $itemUnitPrice;
  489. }
  490. public function getItemUnitPrice()
  491. {
  492. return $this->itemUnitPrice;
  493. }
  494. public function setJsTokenId($jsTokenId)
  495. {
  496. $this->jsTokenId = $jsTokenId;
  497. $this->apiParas["js_token_id"] = $jsTokenId;
  498. }
  499. public function getJsTokenId()
  500. {
  501. return $this->jsTokenId;
  502. }
  503. public function setOrderAmount($orderAmount)
  504. {
  505. $this->orderAmount = $orderAmount;
  506. $this->apiParas["order_amount"] = $orderAmount;
  507. }
  508. public function getOrderAmount()
  509. {
  510. return $this->orderAmount;
  511. }
  512. public function setOrderCategory($orderCategory)
  513. {
  514. $this->orderCategory = $orderCategory;
  515. $this->apiParas["order_category"] = $orderCategory;
  516. }
  517. public function getOrderCategory()
  518. {
  519. return $this->orderCategory;
  520. }
  521. public function setOrderCredateTime($orderCredateTime)
  522. {
  523. $this->orderCredateTime = $orderCredateTime;
  524. $this->apiParas["order_credate_time"] = $orderCredateTime;
  525. }
  526. public function getOrderCredateTime()
  527. {
  528. return $this->orderCredateTime;
  529. }
  530. public function setOrderItemCity($orderItemCity)
  531. {
  532. $this->orderItemCity = $orderItemCity;
  533. $this->apiParas["order_item_city"] = $orderItemCity;
  534. }
  535. public function getOrderItemCity()
  536. {
  537. return $this->orderItemCity;
  538. }
  539. public function setOrderItemName($orderItemName)
  540. {
  541. $this->orderItemName = $orderItemName;
  542. $this->apiParas["order_item_name"] = $orderItemName;
  543. }
  544. public function getOrderItemName()
  545. {
  546. return $this->orderItemName;
  547. }
  548. public function setOrderNo($orderNo)
  549. {
  550. $this->orderNo = $orderNo;
  551. $this->apiParas["order_no"] = $orderNo;
  552. }
  553. public function getOrderNo()
  554. {
  555. return $this->orderNo;
  556. }
  557. public function setPartnerId($partnerId)
  558. {
  559. $this->partnerId = $partnerId;
  560. $this->apiParas["partner_id"] = $partnerId;
  561. }
  562. public function getPartnerId()
  563. {
  564. return $this->partnerId;
  565. }
  566. public function setReceiverAddress($receiverAddress)
  567. {
  568. $this->receiverAddress = $receiverAddress;
  569. $this->apiParas["receiver_address"] = $receiverAddress;
  570. }
  571. public function getReceiverAddress()
  572. {
  573. return $this->receiverAddress;
  574. }
  575. public function setReceiverCity($receiverCity)
  576. {
  577. $this->receiverCity = $receiverCity;
  578. $this->apiParas["receiver_city"] = $receiverCity;
  579. }
  580. public function getReceiverCity()
  581. {
  582. return $this->receiverCity;
  583. }
  584. public function setReceiverDistrict($receiverDistrict)
  585. {
  586. $this->receiverDistrict = $receiverDistrict;
  587. $this->apiParas["receiver_district"] = $receiverDistrict;
  588. }
  589. public function getReceiverDistrict()
  590. {
  591. return $this->receiverDistrict;
  592. }
  593. public function setReceiverEmail($receiverEmail)
  594. {
  595. $this->receiverEmail = $receiverEmail;
  596. $this->apiParas["receiver_email"] = $receiverEmail;
  597. }
  598. public function getReceiverEmail()
  599. {
  600. return $this->receiverEmail;
  601. }
  602. public function setReceiverMobile($receiverMobile)
  603. {
  604. $this->receiverMobile = $receiverMobile;
  605. $this->apiParas["receiver_mobile"] = $receiverMobile;
  606. }
  607. public function getReceiverMobile()
  608. {
  609. return $this->receiverMobile;
  610. }
  611. public function setReceiverName($receiverName)
  612. {
  613. $this->receiverName = $receiverName;
  614. $this->apiParas["receiver_name"] = $receiverName;
  615. }
  616. public function getReceiverName()
  617. {
  618. return $this->receiverName;
  619. }
  620. public function setReceiverState($receiverState)
  621. {
  622. $this->receiverState = $receiverState;
  623. $this->apiParas["receiver_state"] = $receiverState;
  624. }
  625. public function getReceiverState()
  626. {
  627. return $this->receiverState;
  628. }
  629. public function setReceiverZip($receiverZip)
  630. {
  631. $this->receiverZip = $receiverZip;
  632. $this->apiParas["receiver_zip"] = $receiverZip;
  633. }
  634. public function getReceiverZip()
  635. {
  636. return $this->receiverZip;
  637. }
  638. public function setSceneCode($sceneCode)
  639. {
  640. $this->sceneCode = $sceneCode;
  641. $this->apiParas["scene_code"] = $sceneCode;
  642. }
  643. public function getSceneCode()
  644. {
  645. return $this->sceneCode;
  646. }
  647. public function setSellerAccountNo($sellerAccountNo)
  648. {
  649. $this->sellerAccountNo = $sellerAccountNo;
  650. $this->apiParas["seller_account_no"] = $sellerAccountNo;
  651. }
  652. public function getSellerAccountNo()
  653. {
  654. return $this->sellerAccountNo;
  655. }
  656. public function setSellerBindBankcard($sellerBindBankcard)
  657. {
  658. $this->sellerBindBankcard = $sellerBindBankcard;
  659. $this->apiParas["seller_bind_bankcard"] = $sellerBindBankcard;
  660. }
  661. public function getSellerBindBankcard()
  662. {
  663. return $this->sellerBindBankcard;
  664. }
  665. public function setSellerBindBankcardType($sellerBindBankcardType)
  666. {
  667. $this->sellerBindBankcardType = $sellerBindBankcardType;
  668. $this->apiParas["seller_bind_bankcard_type"] = $sellerBindBankcardType;
  669. }
  670. public function getSellerBindBankcardType()
  671. {
  672. return $this->sellerBindBankcardType;
  673. }
  674. public function setSellerBindMobile($sellerBindMobile)
  675. {
  676. $this->sellerBindMobile = $sellerBindMobile;
  677. $this->apiParas["seller_bind_mobile"] = $sellerBindMobile;
  678. }
  679. public function getSellerBindMobile()
  680. {
  681. return $this->sellerBindMobile;
  682. }
  683. public function setSellerIdentityNo($sellerIdentityNo)
  684. {
  685. $this->sellerIdentityNo = $sellerIdentityNo;
  686. $this->apiParas["seller_identity_no"] = $sellerIdentityNo;
  687. }
  688. public function getSellerIdentityNo()
  689. {
  690. return $this->sellerIdentityNo;
  691. }
  692. public function setSellerIdentityType($sellerIdentityType)
  693. {
  694. $this->sellerIdentityType = $sellerIdentityType;
  695. $this->apiParas["seller_identity_type"] = $sellerIdentityType;
  696. }
  697. public function getSellerIdentityType()
  698. {
  699. return $this->sellerIdentityType;
  700. }
  701. public function setSellerRealName($sellerRealName)
  702. {
  703. $this->sellerRealName = $sellerRealName;
  704. $this->apiParas["seller_real_name"] = $sellerRealName;
  705. }
  706. public function getSellerRealName()
  707. {
  708. return $this->sellerRealName;
  709. }
  710. public function setSellerRegDate($sellerRegDate)
  711. {
  712. $this->sellerRegDate = $sellerRegDate;
  713. $this->apiParas["seller_reg_date"] = $sellerRegDate;
  714. }
  715. public function getSellerRegDate()
  716. {
  717. return $this->sellerRegDate;
  718. }
  719. public function setSellerRegEmail($sellerRegEmail)
  720. {
  721. $this->sellerRegEmail = $sellerRegEmail;
  722. $this->apiParas["seller_reg_email"] = $sellerRegEmail;
  723. }
  724. public function getSellerRegEmail()
  725. {
  726. return $this->sellerRegEmail;
  727. }
  728. public function setSellerRegMoile($sellerRegMoile)
  729. {
  730. $this->sellerRegMoile = $sellerRegMoile;
  731. $this->apiParas["seller_reg_moile"] = $sellerRegMoile;
  732. }
  733. public function getSellerRegMoile()
  734. {
  735. return $this->sellerRegMoile;
  736. }
  737. public function setTransportType($transportType)
  738. {
  739. $this->transportType = $transportType;
  740. $this->apiParas["transport_type"] = $transportType;
  741. }
  742. public function getTransportType()
  743. {
  744. return $this->transportType;
  745. }
  746. public function getApiMethodName()
  747. {
  748. return "alipay.security.risk.detect";
  749. }
  750. public function setNotifyUrl($notifyUrl)
  751. {
  752. $this->notifyUrl=$notifyUrl;
  753. }
  754. public function getNotifyUrl()
  755. {
  756. return $this->notifyUrl;
  757. }
  758. public function setReturnUrl($returnUrl)
  759. {
  760. $this->returnUrl=$returnUrl;
  761. }
  762. public function getReturnUrl()
  763. {
  764. return $this->returnUrl;
  765. }
  766. public function getApiParas()
  767. {
  768. return $this->apiParas;
  769. }
  770. public function getTerminalType()
  771. {
  772. return $this->terminalType;
  773. }
  774. public function setTerminalType($terminalType)
  775. {
  776. $this->terminalType = $terminalType;
  777. }
  778. public function getTerminalInfo()
  779. {
  780. return $this->terminalInfo;
  781. }
  782. public function setTerminalInfo($terminalInfo)
  783. {
  784. $this->terminalInfo = $terminalInfo;
  785. }
  786. public function getProdCode()
  787. {
  788. return $this->prodCode;
  789. }
  790. public function setProdCode($prodCode)
  791. {
  792. $this->prodCode = $prodCode;
  793. }
  794. public function setApiVersion($apiVersion)
  795. {
  796. $this->apiVersion=$apiVersion;
  797. }
  798. public function getApiVersion()
  799. {
  800. return $this->apiVersion;
  801. }
  802. public function setNeedEncrypt($needEncrypt)
  803. {
  804. $this->needEncrypt=$needEncrypt;
  805. }
  806. public function getNeedEncrypt()
  807. {
  808. return $this->needEncrypt;
  809. }
  810. }