<?php
/**
 * 苏宁开放平台接口 - 
 *
 * @author suning
 * @date   2021-5-14
 */
class HisOrderEvaluateQueryRequest  extends SelectSuningRequest{
	
	/**
	 * 
	 */
	private $endTime;
	
	/**
	 * 
	 */
	private $evaluateLevel;
	
	/**
	 * 
	 */
	private $isAddComments;
	
	/**
	 * 
	 */
	private $isReply;
	
	
	
	/**
	 * 
	 */
	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 getStartTime() {
		return $this->startTime;
	}
	
	public function setStartTime($startTime) {
		$this->startTime = $startTime;
		$this->apiParams["startTime"] = $startTime;
	}
	
	public function getApiMethodName(){
		return 'suning.custom.hisorderevaluate.query';
	}
	
	public function getApiParams(){
		return $this->apiParams;
	}
	
	public function check(){
		//非空校验
		RequestCheckUtil::checkNotNull($this->endTime, 'endTime');
		RequestCheckUtil::checkNotNull($this->startTime, 'startTime');
	}
	
	public function getBizName(){
		return "queryHisOrderEvaluate";
	}
	
}

?>