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/EnterpriseyfgprourlGetReque...

86 lines
1.5 KiB

8 months ago
<?php
/**
* 苏宁开放平台接口 -
*
* @author suning
* @date 2021-5-17
*/
class EnterpriseyfgprourlGetRequest extends SuningRequest{
/**
*
*/
private $actCode;
/**
*
*/
private $actType;
/**
*
*/
private $proType;
/**
*
*/
private $subUser;
public function getActCode() {
return $this->actCode;
}
public function setActCode($actCode) {
$this->actCode = $actCode;
$this->apiParams["actCode"] = $actCode;
}
public function getActType() {
return $this->actType;
}
public function setActType($actType) {
$this->actType = $actType;
$this->apiParams["actType"] = $actType;
}
public function getProType() {
return $this->proType;
}
public function setProType($proType) {
$this->proType = $proType;
$this->apiParams["proType"] = $proType;
}
public function getSubUser() {
return $this->subUser;
}
public function setSubUser($subUser) {
$this->subUser = $subUser;
$this->apiParams["subUser"] = $subUser;
}
public function getApiMethodName(){
return 'suning.netalliance.enterpriseyfgprourl.get';
}
public function getApiParams(){
return $this->apiParams;
}
public function check(){
//非空校验
RequestCheckUtil::checkNotNull($this->actCode, 'actCode');
RequestCheckUtil::checkNotNull($this->proType, 'proType');
}
public function getBizName(){
return "getEnterpriseyfgprourl";
}
}
?>