You've already forked qlg.tsgz.moe
							
							
		
			
				
	
	
		
			471 lines
		
	
	
		
			8.7 KiB
		
	
	
	
		
			PHP
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			471 lines
		
	
	
		
			8.7 KiB
		
	
	
	
		
			PHP
		
	
	
		
			Executable File
		
	
	
	
	
<?php
 | 
						|
/**
 | 
						|
 * ALIPAY API: alipay.security.info.analysis request
 | 
						|
 *
 | 
						|
 * @author auto create
 | 
						|
 * @since 1.0, 2016-03-04 14:55:20
 | 
						|
 */
 | 
						|
class AlipaySecurityInfoAnalysisRequest
 | 
						|
{
 | 
						|
	/** 
 | 
						|
	 * 客户端的基带版本
 | 
						|
	 **/
 | 
						|
	private $envClientBaseBand;
 | 
						|
	
 | 
						|
	/** 
 | 
						|
	 * 客户端连接的基站信息
 | 
						|
	 **/
 | 
						|
	private $envClientBaseStation;
 | 
						|
	
 | 
						|
	/** 
 | 
						|
	 * 客户端的经纬度坐标
 | 
						|
	 **/
 | 
						|
	private $envClientCoordinates;
 | 
						|
	
 | 
						|
	/** 
 | 
						|
	 * 操作的客户端的imei
 | 
						|
	 **/
 | 
						|
	private $envClientImei;
 | 
						|
	
 | 
						|
	/** 
 | 
						|
	 * 操作的客户端的imsi
 | 
						|
	 **/
 | 
						|
	private $envClientImsi;
 | 
						|
	
 | 
						|
	/** 
 | 
						|
	 * IOS设备的UDID
 | 
						|
	 **/
 | 
						|
	private $envClientIosUdid;
 | 
						|
	
 | 
						|
	/** 
 | 
						|
	 * 操作的客户端ip
 | 
						|
	 **/
 | 
						|
	private $envClientIp;
 | 
						|
	
 | 
						|
	/** 
 | 
						|
	 * 操作的客户端mac
 | 
						|
	 **/
 | 
						|
	private $envClientMac;
 | 
						|
	
 | 
						|
	/** 
 | 
						|
	 * 操作的客户端分辨率,格式为:水平像素^垂直像素;如:800^600
 | 
						|
	 **/
 | 
						|
	private $envClientScreen;
 | 
						|
	
 | 
						|
	/** 
 | 
						|
	 * 客户端设备的统一识别码UUID
 | 
						|
	 **/
 | 
						|
	private $envClientUuid;
 | 
						|
	
 | 
						|
	/** 
 | 
						|
	 * JS SDK生成的 tokenID
 | 
						|
	 **/
 | 
						|
	private $jsTokenId;
 | 
						|
	
 | 
						|
	/** 
 | 
						|
	 * 签约的支付宝账号对应的支付宝唯一用户号
 | 
						|
	 **/
 | 
						|
	private $partnerId;
 | 
						|
	
 | 
						|
	/** 
 | 
						|
	 * 场景编码
 | 
						|
	 **/
 | 
						|
	private $sceneCode;
 | 
						|
	
 | 
						|
	/** 
 | 
						|
	 * 卖家账户ID
 | 
						|
	 **/
 | 
						|
	private $userAccountNo;
 | 
						|
	
 | 
						|
	/** 
 | 
						|
	 * 用户绑定银行卡号
 | 
						|
	 **/
 | 
						|
	private $userBindBankcard;
 | 
						|
	
 | 
						|
	/** 
 | 
						|
	 * 用户绑定银行卡的卡类型
 | 
						|
	 **/
 | 
						|
	private $userBindBankcardType;
 | 
						|
	
 | 
						|
	/** 
 | 
						|
	 * 用户绑定手机号
 | 
						|
	 **/
 | 
						|
	private $userBindMobile;
 | 
						|
	
 | 
						|
	/** 
 | 
						|
	 * 用户证件类型
 | 
						|
	 **/
 | 
						|
	private $userIdentityType;
 | 
						|
	
 | 
						|
	/** 
 | 
						|
	 * 用户真实姓名
 | 
						|
	 **/
 | 
						|
	private $userRealName;
 | 
						|
	
 | 
						|
	/** 
 | 
						|
	 * 用户注册时间
 | 
						|
	 **/
 | 
						|
	private $userRegDate;
 | 
						|
	
 | 
						|
	/** 
 | 
						|
	 * 用户注册Email
 | 
						|
	 **/
 | 
						|
	private $userRegEmail;
 | 
						|
	
 | 
						|
	/** 
 | 
						|
	 * 用户注册手机号
 | 
						|
	 **/
 | 
						|
	private $userRegMobile;
 | 
						|
	
 | 
						|
	/** 
 | 
						|
	 * 用户证件号码
 | 
						|
	 **/
 | 
						|
	private $userrIdentityNo;
 | 
						|
 | 
						|
	private $apiParas = array();
 | 
						|
	private $terminalType;
 | 
						|
	private $terminalInfo;
 | 
						|
	private $prodCode;
 | 
						|
	private $apiVersion="1.0";
 | 
						|
	private $notifyUrl;
 | 
						|
	private $returnUrl;
 | 
						|
    private $needEncrypt=false;
 | 
						|
 | 
						|
	
 | 
						|
	public function setEnvClientBaseBand($envClientBaseBand)
 | 
						|
	{
 | 
						|
		$this->envClientBaseBand = $envClientBaseBand;
 | 
						|
		$this->apiParas["env_client_base_band"] = $envClientBaseBand;
 | 
						|
	}
 | 
						|
 | 
						|
	public function getEnvClientBaseBand()
 | 
						|
	{
 | 
						|
		return $this->envClientBaseBand;
 | 
						|
	}
 | 
						|
 | 
						|
	public function setEnvClientBaseStation($envClientBaseStation)
 | 
						|
	{
 | 
						|
		$this->envClientBaseStation = $envClientBaseStation;
 | 
						|
		$this->apiParas["env_client_base_station"] = $envClientBaseStation;
 | 
						|
	}
 | 
						|
 | 
						|
	public function getEnvClientBaseStation()
 | 
						|
	{
 | 
						|
		return $this->envClientBaseStation;
 | 
						|
	}
 | 
						|
 | 
						|
	public function setEnvClientCoordinates($envClientCoordinates)
 | 
						|
	{
 | 
						|
		$this->envClientCoordinates = $envClientCoordinates;
 | 
						|
		$this->apiParas["env_client_coordinates"] = $envClientCoordinates;
 | 
						|
	}
 | 
						|
 | 
						|
	public function getEnvClientCoordinates()
 | 
						|
	{
 | 
						|
		return $this->envClientCoordinates;
 | 
						|
	}
 | 
						|
 | 
						|
	public function setEnvClientImei($envClientImei)
 | 
						|
	{
 | 
						|
		$this->envClientImei = $envClientImei;
 | 
						|
		$this->apiParas["env_client_imei"] = $envClientImei;
 | 
						|
	}
 | 
						|
 | 
						|
	public function getEnvClientImei()
 | 
						|
	{
 | 
						|
		return $this->envClientImei;
 | 
						|
	}
 | 
						|
 | 
						|
	public function setEnvClientImsi($envClientImsi)
 | 
						|
	{
 | 
						|
		$this->envClientImsi = $envClientImsi;
 | 
						|
		$this->apiParas["env_client_imsi"] = $envClientImsi;
 | 
						|
	}
 | 
						|
 | 
						|
	public function getEnvClientImsi()
 | 
						|
	{
 | 
						|
		return $this->envClientImsi;
 | 
						|
	}
 | 
						|
 | 
						|
	public function setEnvClientIosUdid($envClientIosUdid)
 | 
						|
	{
 | 
						|
		$this->envClientIosUdid = $envClientIosUdid;
 | 
						|
		$this->apiParas["env_client_ios_udid"] = $envClientIosUdid;
 | 
						|
	}
 | 
						|
 | 
						|
	public function getEnvClientIosUdid()
 | 
						|
	{
 | 
						|
		return $this->envClientIosUdid;
 | 
						|
	}
 | 
						|
 | 
						|
	public function setEnvClientIp($envClientIp)
 | 
						|
	{
 | 
						|
		$this->envClientIp = $envClientIp;
 | 
						|
		$this->apiParas["env_client_ip"] = $envClientIp;
 | 
						|
	}
 | 
						|
 | 
						|
	public function getEnvClientIp()
 | 
						|
	{
 | 
						|
		return $this->envClientIp;
 | 
						|
	}
 | 
						|
 | 
						|
	public function setEnvClientMac($envClientMac)
 | 
						|
	{
 | 
						|
		$this->envClientMac = $envClientMac;
 | 
						|
		$this->apiParas["env_client_mac"] = $envClientMac;
 | 
						|
	}
 | 
						|
 | 
						|
	public function getEnvClientMac()
 | 
						|
	{
 | 
						|
		return $this->envClientMac;
 | 
						|
	}
 | 
						|
 | 
						|
	public function setEnvClientScreen($envClientScreen)
 | 
						|
	{
 | 
						|
		$this->envClientScreen = $envClientScreen;
 | 
						|
		$this->apiParas["env_client_screen"] = $envClientScreen;
 | 
						|
	}
 | 
						|
 | 
						|
	public function getEnvClientScreen()
 | 
						|
	{
 | 
						|
		return $this->envClientScreen;
 | 
						|
	}
 | 
						|
 | 
						|
	public function setEnvClientUuid($envClientUuid)
 | 
						|
	{
 | 
						|
		$this->envClientUuid = $envClientUuid;
 | 
						|
		$this->apiParas["env_client_uuid"] = $envClientUuid;
 | 
						|
	}
 | 
						|
 | 
						|
	public function getEnvClientUuid()
 | 
						|
	{
 | 
						|
		return $this->envClientUuid;
 | 
						|
	}
 | 
						|
 | 
						|
	public function setJsTokenId($jsTokenId)
 | 
						|
	{
 | 
						|
		$this->jsTokenId = $jsTokenId;
 | 
						|
		$this->apiParas["js_token_id"] = $jsTokenId;
 | 
						|
	}
 | 
						|
 | 
						|
	public function getJsTokenId()
 | 
						|
	{
 | 
						|
		return $this->jsTokenId;
 | 
						|
	}
 | 
						|
 | 
						|
	public function setPartnerId($partnerId)
 | 
						|
	{
 | 
						|
		$this->partnerId = $partnerId;
 | 
						|
		$this->apiParas["partner_id"] = $partnerId;
 | 
						|
	}
 | 
						|
 | 
						|
	public function getPartnerId()
 | 
						|
	{
 | 
						|
		return $this->partnerId;
 | 
						|
	}
 | 
						|
 | 
						|
	public function setSceneCode($sceneCode)
 | 
						|
	{
 | 
						|
		$this->sceneCode = $sceneCode;
 | 
						|
		$this->apiParas["scene_code"] = $sceneCode;
 | 
						|
	}
 | 
						|
 | 
						|
	public function getSceneCode()
 | 
						|
	{
 | 
						|
		return $this->sceneCode;
 | 
						|
	}
 | 
						|
 | 
						|
	public function setUserAccountNo($userAccountNo)
 | 
						|
	{
 | 
						|
		$this->userAccountNo = $userAccountNo;
 | 
						|
		$this->apiParas["user_account_no"] = $userAccountNo;
 | 
						|
	}
 | 
						|
 | 
						|
	public function getUserAccountNo()
 | 
						|
	{
 | 
						|
		return $this->userAccountNo;
 | 
						|
	}
 | 
						|
 | 
						|
	public function setUserBindBankcard($userBindBankcard)
 | 
						|
	{
 | 
						|
		$this->userBindBankcard = $userBindBankcard;
 | 
						|
		$this->apiParas["user_bind_bankcard"] = $userBindBankcard;
 | 
						|
	}
 | 
						|
 | 
						|
	public function getUserBindBankcard()
 | 
						|
	{
 | 
						|
		return $this->userBindBankcard;
 | 
						|
	}
 | 
						|
 | 
						|
	public function setUserBindBankcardType($userBindBankcardType)
 | 
						|
	{
 | 
						|
		$this->userBindBankcardType = $userBindBankcardType;
 | 
						|
		$this->apiParas["user_bind_bankcard_type"] = $userBindBankcardType;
 | 
						|
	}
 | 
						|
 | 
						|
	public function getUserBindBankcardType()
 | 
						|
	{
 | 
						|
		return $this->userBindBankcardType;
 | 
						|
	}
 | 
						|
 | 
						|
	public function setUserBindMobile($userBindMobile)
 | 
						|
	{
 | 
						|
		$this->userBindMobile = $userBindMobile;
 | 
						|
		$this->apiParas["user_bind_mobile"] = $userBindMobile;
 | 
						|
	}
 | 
						|
 | 
						|
	public function getUserBindMobile()
 | 
						|
	{
 | 
						|
		return $this->userBindMobile;
 | 
						|
	}
 | 
						|
 | 
						|
	public function setUserIdentityType($userIdentityType)
 | 
						|
	{
 | 
						|
		$this->userIdentityType = $userIdentityType;
 | 
						|
		$this->apiParas["user_identity_type"] = $userIdentityType;
 | 
						|
	}
 | 
						|
 | 
						|
	public function getUserIdentityType()
 | 
						|
	{
 | 
						|
		return $this->userIdentityType;
 | 
						|
	}
 | 
						|
 | 
						|
	public function setUserRealName($userRealName)
 | 
						|
	{
 | 
						|
		$this->userRealName = $userRealName;
 | 
						|
		$this->apiParas["user_real_name"] = $userRealName;
 | 
						|
	}
 | 
						|
 | 
						|
	public function getUserRealName()
 | 
						|
	{
 | 
						|
		return $this->userRealName;
 | 
						|
	}
 | 
						|
 | 
						|
	public function setUserRegDate($userRegDate)
 | 
						|
	{
 | 
						|
		$this->userRegDate = $userRegDate;
 | 
						|
		$this->apiParas["user_reg_date"] = $userRegDate;
 | 
						|
	}
 | 
						|
 | 
						|
	public function getUserRegDate()
 | 
						|
	{
 | 
						|
		return $this->userRegDate;
 | 
						|
	}
 | 
						|
 | 
						|
	public function setUserRegEmail($userRegEmail)
 | 
						|
	{
 | 
						|
		$this->userRegEmail = $userRegEmail;
 | 
						|
		$this->apiParas["user_reg_email"] = $userRegEmail;
 | 
						|
	}
 | 
						|
 | 
						|
	public function getUserRegEmail()
 | 
						|
	{
 | 
						|
		return $this->userRegEmail;
 | 
						|
	}
 | 
						|
 | 
						|
	public function setUserRegMobile($userRegMobile)
 | 
						|
	{
 | 
						|
		$this->userRegMobile = $userRegMobile;
 | 
						|
		$this->apiParas["user_reg_mobile"] = $userRegMobile;
 | 
						|
	}
 | 
						|
 | 
						|
	public function getUserRegMobile()
 | 
						|
	{
 | 
						|
		return $this->userRegMobile;
 | 
						|
	}
 | 
						|
 | 
						|
	public function setUserrIdentityNo($userrIdentityNo)
 | 
						|
	{
 | 
						|
		$this->userrIdentityNo = $userrIdentityNo;
 | 
						|
		$this->apiParas["userr_identity_no"] = $userrIdentityNo;
 | 
						|
	}
 | 
						|
 | 
						|
	public function getUserrIdentityNo()
 | 
						|
	{
 | 
						|
		return $this->userrIdentityNo;
 | 
						|
	}
 | 
						|
 | 
						|
	public function getApiMethodName()
 | 
						|
	{
 | 
						|
		return "alipay.security.info.analysis";
 | 
						|
	}
 | 
						|
 | 
						|
	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;
 | 
						|
  }
 | 
						|
 | 
						|
}
 |