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/integrate/CulitemcontentreviseModifyR...

337 lines
6.3 KiB

<?php
/**
* 苏宁开放平台接口 -
*
* @author suning
* @date 2020-4-15
*/
class CulitemcontentreviseModifyRequest extends SuningRequest{
/**
*
*/
private $afterSaleServiceDec;
/**
*
*/
private $assortCode;
/**
*
*/
private $cmTitle;
/**
*
*/
private $detailModule;
/**
*
*/
private $introduction;
/**
*
*/
private $itemCode;
/**
*
*/
private $peopleNum;
/**
*
*/
private $productCode;
/**
*
*/
private $purchaseMin;
/**
*
*/
private $salesDate;
/**
*
*/
private $saleSet;
/**
*
*/
private $sellPoint;
/**
*
*/
private $supplierImgAUrl;
/**
*
*/
private $supplierImgBUrl;
/**
*
*/
private $supplierImgCUrl;
/**
*
*/
private $supplierImgDUrl;
/**
*
*/
private $supplierImgEUrl;
public function getAfterSaleServiceDec() {
return $this->afterSaleServiceDec;
}
public function setAfterSaleServiceDec($afterSaleServiceDec) {
$this->afterSaleServiceDec = $afterSaleServiceDec;
$this->apiParams["afterSaleServiceDec"] = $afterSaleServiceDec;
}
public function getAssortCode() {
return $this->assortCode;
}
public function setAssortCode($assortCode) {
$this->assortCode = $assortCode;
$this->apiParams["assortCode"] = $assortCode;
}
public function getCmTitle() {
return $this->cmTitle;
}
public function setCmTitle($cmTitle) {
$this->cmTitle = $cmTitle;
$this->apiParams["cmTitle"] = $cmTitle;
}
public function getDetailModule() {
return $this->detailModule;
}
public function setDetailModule($detailModule) {
$this->detailModule = $detailModule;
$arr = array();
foreach ($detailModule as $temp){
array_push($arr,$temp->getApiParams());
}
$this->apiParams["detailModule"] = $arr;
}
public function getIntroduction() {
return $this->introduction;
}
public function setIntroduction($introduction) {
$this->introduction = $introduction;
$this->apiParams["introduction"] = $introduction;
}
public function getItemCode() {
return $this->itemCode;
}
public function setItemCode($itemCode) {
$this->itemCode = $itemCode;
$this->apiParams["itemCode"] = $itemCode;
}
public function getPeopleNum() {
return $this->peopleNum;
}
public function setPeopleNum($peopleNum) {
$this->peopleNum = $peopleNum;
$this->apiParams["peopleNum"] = $peopleNum;
}
public function getProductCode() {
return $this->productCode;
}
public function setProductCode($productCode) {
$this->productCode = $productCode;
$this->apiParams["productCode"] = $productCode;
}
public function getPurchaseMin() {
return $this->purchaseMin;
}
public function setPurchaseMin($purchaseMin) {
$this->purchaseMin = $purchaseMin;
$this->apiParams["purchaseMin"] = $purchaseMin;
}
public function getSalesDate() {
return $this->salesDate;
}
public function setSalesDate($salesDate) {
$this->salesDate = $salesDate;
$this->apiParams["salesDate"] = $salesDate;
}
public function getSaleSet() {
return $this->saleSet;
}
public function setSaleSet($saleSet) {
$this->saleSet = $saleSet;
$this->apiParams["saleSet"] = $saleSet;
}
public function getSellPoint() {
return $this->sellPoint;
}
public function setSellPoint($sellPoint) {
$this->sellPoint = $sellPoint;
$this->apiParams["sellPoint"] = $sellPoint;
}
public function getSupplierImgAUrl() {
return $this->supplierImgAUrl;
}
public function setSupplierImgAUrl($supplierImgAUrl) {
$this->supplierImgAUrl = $supplierImgAUrl;
$this->apiParams["supplierImgAUrl"] = $supplierImgAUrl;
}
public function getSupplierImgBUrl() {
return $this->supplierImgBUrl;
}
public function setSupplierImgBUrl($supplierImgBUrl) {
$this->supplierImgBUrl = $supplierImgBUrl;
$this->apiParams["supplierImgBUrl"] = $supplierImgBUrl;
}
public function getSupplierImgCUrl() {
return $this->supplierImgCUrl;
}
public function setSupplierImgCUrl($supplierImgCUrl) {
$this->supplierImgCUrl = $supplierImgCUrl;
$this->apiParams["supplierImgCUrl"] = $supplierImgCUrl;
}
public function getSupplierImgDUrl() {
return $this->supplierImgDUrl;
}
public function setSupplierImgDUrl($supplierImgDUrl) {
$this->supplierImgDUrl = $supplierImgDUrl;
$this->apiParams["supplierImgDUrl"] = $supplierImgDUrl;
}
public function getSupplierImgEUrl() {
return $this->supplierImgEUrl;
}
public function setSupplierImgEUrl($supplierImgEUrl) {
$this->supplierImgEUrl = $supplierImgEUrl;
$this->apiParams["supplierImgEUrl"] = $supplierImgEUrl;
}
public function getApiMethodName(){
return 'suning.integrate.culitemcontentrevise.modify';
}
public function getApiParams(){
return $this->apiParams;
}
public function check(){
//非空校验
RequestCheckUtil::checkNotNull($this->productCode, 'productCode');
RequestCheckUtil::checkNotNull($this->purchaseMin, 'purchaseMin');
}
public function getBizName(){
return "modifyCulitemcontentrevise";
}
}
class DetailModule {
private $apiParams = array();
private $content;
private $moduleId;
private $moduleName;
private $num;
private $type;
public function getContent() {
return $this->content;
}
public function setContent($content) {
$this->content = $content;
$this->apiParams["content"] = $content;
}
public function getModuleId() {
return $this->moduleId;
}
public function setModuleId($moduleId) {
$this->moduleId = $moduleId;
$this->apiParams["moduleId"] = $moduleId;
}
public function getModuleName() {
return $this->moduleName;
}
public function setModuleName($moduleName) {
$this->moduleName = $moduleName;
$this->apiParams["moduleName"] = $moduleName;
}
public function getNum() {
return $this->num;
}
public function setNum($num) {
$this->num = $num;
$this->apiParams["num"] = $num;
}
public function getType() {
return $this->type;
}
public function setType($type) {
$this->type = $type;
$this->apiParams["type"] = $type;
}
public function getApiParams(){
return $this->apiParams;
}
}
?>