<?php
class ExtendParams
{
private $sysServiceProviderId;
private $hbFqNum;
private $hbFqSellerPercent;
private $extendParamsArr = array();
public function getExtendParams()
{
if(!empty($this->extendParamsArr)) {
return $this->extendParamsArr;
}
}
public function getSysServiceProviderId()
{
return $this->sysServiceProviderId;
}
public function setSysServiceProviderId($sysServiceProviderId)
{
$this->sysServiceProviderId = $sysServiceProviderId;
$this->extendParamsArr['sys_service_provider_id'] = $sysServiceProviderId;
}
public function getHbFqNum()
{
return $this->hbFqNum;
}
public function setHbFqNum($hbFqNum)
{
$this->hbFqNum = $hbFqNum;
$this->extendParamsArr['hb_fq_num'] = $hbFqNum;
}
public function getHbFqSellerPercent()
{
return $this->hbFqSellerPercent;
}
public function setHbFqSellerPercent($hbFqSellerPercent)
{
$this->hbFqSellerPercent = $hbFqSellerPercent;
$this->extendParamsArr['hb_fq_seller_percent'] = $hbFqSellerPercent;
}
}