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.
184 lines
3.5 KiB
184 lines
3.5 KiB
8 months ago
|
<?php
|
||
|
/**
|
||
|
* 苏宁开放平台接口 -
|
||
|
*
|
||
|
* @author suning
|
||
|
* @date 2020-9-19
|
||
|
*/
|
||
|
class QuerysmartkeywordQueryRequest extends SuningRequest{
|
||
|
|
||
|
/**
|
||
|
*
|
||
|
*/
|
||
|
private $keyword;
|
||
|
|
||
|
public function getKeyword() {
|
||
|
return $this->keyword;
|
||
|
}
|
||
|
|
||
|
public function setKeyword($keyword) {
|
||
|
$this->keyword = $keyword;
|
||
|
$this->apiParams["keyword"] = $keyword->getApiParams();
|
||
|
}
|
||
|
|
||
|
public function getApiMethodName(){
|
||
|
return 'suning.advertise.querysmartkeyword.query';
|
||
|
}
|
||
|
|
||
|
public function getApiParams(){
|
||
|
return $this->apiParams;
|
||
|
}
|
||
|
|
||
|
public function check(){
|
||
|
//非空校验
|
||
|
}
|
||
|
|
||
|
public function getBizName(){
|
||
|
return "queryQuerysmartkeyword";
|
||
|
}
|
||
|
|
||
|
}
|
||
|
|
||
|
class Keyword {
|
||
|
|
||
|
private $apiParams = array();
|
||
|
|
||
|
private $custnum;
|
||
|
|
||
|
private $endDate;
|
||
|
|
||
|
private $name;
|
||
|
|
||
|
private $orderBy;
|
||
|
|
||
|
private $pageNum;
|
||
|
|
||
|
private $pagerSize;
|
||
|
|
||
|
private $promotionId;
|
||
|
|
||
|
private $promotionStatus;
|
||
|
|
||
|
private $promotionType;
|
||
|
|
||
|
private $promotionUnitId;
|
||
|
|
||
|
private $startDate;
|
||
|
|
||
|
private $unitStatus;
|
||
|
|
||
|
public function getCustnum() {
|
||
|
return $this->custnum;
|
||
|
}
|
||
|
|
||
|
public function setCustnum($custnum) {
|
||
|
$this->custnum = $custnum;
|
||
|
$this->apiParams["custnum"] = $custnum;
|
||
|
}
|
||
|
|
||
|
public function getEndDate() {
|
||
|
return $this->endDate;
|
||
|
}
|
||
|
|
||
|
public function setEndDate($endDate) {
|
||
|
$this->endDate = $endDate;
|
||
|
$this->apiParams["endDate"] = $endDate;
|
||
|
}
|
||
|
|
||
|
public function getName() {
|
||
|
return $this->name;
|
||
|
}
|
||
|
|
||
|
public function setName($name) {
|
||
|
$this->name = $name;
|
||
|
$this->apiParams["name"] = $name;
|
||
|
}
|
||
|
|
||
|
public function getOrderBy() {
|
||
|
return $this->orderBy;
|
||
|
}
|
||
|
|
||
|
public function setOrderBy($orderBy) {
|
||
|
$this->orderBy = $orderBy;
|
||
|
$this->apiParams["orderBy"] = $orderBy;
|
||
|
}
|
||
|
|
||
|
public function getPageNum() {
|
||
|
return $this->pageNum;
|
||
|
}
|
||
|
|
||
|
public function setPageNum($pageNum) {
|
||
|
$this->pageNum = $pageNum;
|
||
|
$this->apiParams["pageNum"] = $pageNum;
|
||
|
}
|
||
|
|
||
|
public function getPagerSize() {
|
||
|
return $this->pagerSize;
|
||
|
}
|
||
|
|
||
|
public function setPagerSize($pagerSize) {
|
||
|
$this->pagerSize = $pagerSize;
|
||
|
$this->apiParams["pagerSize"] = $pagerSize;
|
||
|
}
|
||
|
|
||
|
public function getPromotionId() {
|
||
|
return $this->promotionId;
|
||
|
}
|
||
|
|
||
|
public function setPromotionId($promotionId) {
|
||
|
$this->promotionId = $promotionId;
|
||
|
$this->apiParams["promotionId"] = $promotionId;
|
||
|
}
|
||
|
|
||
|
public function getPromotionStatus() {
|
||
|
return $this->promotionStatus;
|
||
|
}
|
||
|
|
||
|
public function setPromotionStatus($promotionStatus) {
|
||
|
$this->promotionStatus = $promotionStatus;
|
||
|
$this->apiParams["promotionStatus"] = $promotionStatus;
|
||
|
}
|
||
|
|
||
|
public function getPromotionType() {
|
||
|
return $this->promotionType;
|
||
|
}
|
||
|
|
||
|
public function setPromotionType($promotionType) {
|
||
|
$this->promotionType = $promotionType;
|
||
|
$this->apiParams["promotionType"] = $promotionType;
|
||
|
}
|
||
|
|
||
|
public function getPromotionUnitId() {
|
||
|
return $this->promotionUnitId;
|
||
|
}
|
||
|
|
||
|
public function setPromotionUnitId($promotionUnitId) {
|
||
|
$this->promotionUnitId = $promotionUnitId;
|
||
|
$this->apiParams["promotionUnitId"] = $promotionUnitId;
|
||
|
}
|
||
|
|
||
|
public function getStartDate() {
|
||
|
return $this->startDate;
|
||
|
}
|
||
|
|
||
|
public function setStartDate($startDate) {
|
||
|
$this->startDate = $startDate;
|
||
|
$this->apiParams["startDate"] = $startDate;
|
||
|
}
|
||
|
|
||
|
public function getUnitStatus() {
|
||
|
return $this->unitStatus;
|
||
|
}
|
||
|
|
||
|
public function setUnitStatus($unitStatus) {
|
||
|
$this->unitStatus = $unitStatus;
|
||
|
$this->apiParams["unitStatus"] = $unitStatus;
|
||
|
}
|
||
|
|
||
|
public function getApiParams(){
|
||
|
return $this->apiParams;
|
||
|
}
|
||
|
|
||
|
}
|
||
|
|
||
|
?>
|