You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
yanzong/extend/suning-sdk-php/request/netalliance/InvestQueryRequest.php

127 lines
2.1 KiB

<?php
/**
* 苏宁开放平台接口 -
*
* @author suning
* @date 2021-8-25
*/
class InvestQueryRequest extends SuningRequest{
/**
*
*/
private $cityCode;
/**
*
*/
private $districtCode;
/**
*
*/
private $memberType;
/**
*
*/
private $page;
/**
*
*/
private $picType;
/**
*
*/
private $size;
/**
*
*/
private $verifyStatus;
public function getCityCode() {
return $this->cityCode;
}
public function setCityCode($cityCode) {
$this->cityCode = $cityCode;
$this->apiParams["cityCode"] = $cityCode;
}
public function getDistrictCode() {
return $this->districtCode;
}
public function setDistrictCode($districtCode) {
$this->districtCode = $districtCode;
$this->apiParams["districtCode"] = $districtCode;
}
public function getMemberType() {
return $this->memberType;
}
public function setMemberType($memberType) {
$this->memberType = $memberType;
$this->apiParams["memberType"] = $memberType;
}
public function getPage() {
return $this->page;
}
public function setPage($page) {
$this->page = $page;
$this->apiParams["page"] = $page;
}
public function getPicType() {
return $this->picType;
}
public function setPicType($picType) {
$this->picType = $picType;
$this->apiParams["picType"] = $picType;
}
public function getSize() {
return $this->size;
}
public function setSize($size) {
$this->size = $size;
$this->apiParams["size"] = $size;
}
public function getVerifyStatus() {
return $this->verifyStatus;
}
public function setVerifyStatus($verifyStatus) {
$this->verifyStatus = $verifyStatus;
$this->apiParams["verifyStatus"] = $verifyStatus;
}
public function getApiMethodName(){
return 'suning.netalliance.investquery.query';
}
public function getApiParams(){
return $this->apiParams;
}
public function check(){
//非空校验
RequestCheckUtil::checkNotNull($this->verifyStatus, 'verifyStatus');
}
public function getBizName(){
return "queryInvestquery";
}
}
?>