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.
118 lines
2.1 KiB
118 lines
2.1 KiB
<?php
|
|
/**
|
|
* 苏宁开放平台接口 -
|
|
*
|
|
* @author suning
|
|
* @date 2021-5-14
|
|
*/
|
|
class SelfreviewhistroyQueryRequest extends SelectSuningRequest{
|
|
|
|
/**
|
|
*
|
|
*/
|
|
private $endTime;
|
|
|
|
/**
|
|
*
|
|
*/
|
|
private $evaluateLevel;
|
|
|
|
/**
|
|
*
|
|
*/
|
|
private $isAddComments;
|
|
|
|
/**
|
|
*
|
|
*/
|
|
private $isReply;
|
|
|
|
|
|
|
|
/**
|
|
*
|
|
*/
|
|
private $snUnionId;
|
|
|
|
/**
|
|
*
|
|
*/
|
|
private $startTime;
|
|
|
|
public function getEndTime() {
|
|
return $this->endTime;
|
|
}
|
|
|
|
public function setEndTime($endTime) {
|
|
$this->endTime = $endTime;
|
|
$this->apiParams["endTime"] = $endTime;
|
|
}
|
|
|
|
public function getEvaluateLevel() {
|
|
return $this->evaluateLevel;
|
|
}
|
|
|
|
public function setEvaluateLevel($evaluateLevel) {
|
|
$this->evaluateLevel = $evaluateLevel;
|
|
$this->apiParams["evaluateLevel"] = $evaluateLevel;
|
|
}
|
|
|
|
public function getIsAddComments() {
|
|
return $this->isAddComments;
|
|
}
|
|
|
|
public function setIsAddComments($isAddComments) {
|
|
$this->isAddComments = $isAddComments;
|
|
$this->apiParams["isAddComments"] = $isAddComments;
|
|
}
|
|
|
|
public function getIsReply() {
|
|
return $this->isReply;
|
|
}
|
|
|
|
public function setIsReply($isReply) {
|
|
$this->isReply = $isReply;
|
|
$this->apiParams["isReply"] = $isReply;
|
|
}
|
|
|
|
|
|
|
|
public function getSnUnionId() {
|
|
return $this->snUnionId;
|
|
}
|
|
|
|
public function setSnUnionId($snUnionId) {
|
|
$this->snUnionId = $snUnionId;
|
|
$this->apiParams["snUnionId"] = $snUnionId;
|
|
}
|
|
|
|
public function getStartTime() {
|
|
return $this->startTime;
|
|
}
|
|
|
|
public function setStartTime($startTime) {
|
|
$this->startTime = $startTime;
|
|
$this->apiParams["startTime"] = $startTime;
|
|
}
|
|
|
|
public function getApiMethodName(){
|
|
return 'suning.custom.selfreviewhistroy.query';
|
|
}
|
|
|
|
public function getApiParams(){
|
|
return $this->apiParams;
|
|
}
|
|
|
|
public function check(){
|
|
//非空校验
|
|
RequestCheckUtil::checkNotNull($this->endTime, 'endTime');
|
|
RequestCheckUtil::checkNotNull($this->startTime, 'startTime');
|
|
}
|
|
|
|
public function getBizName(){
|
|
return "querySelfreviewhistroy";
|
|
}
|
|
|
|
}
|
|
|
|
?>
|