REAPI/extend/sdk/banma/client/request/RechargeMobileGetItemListRequest.php
2024-09-29 15:43:18 +08:00

61 lines
1.1 KiB
PHP

<?php
/**
* API: qianmi.elife.recharge.mobile.getItemList request
*
* @author auto create
* @since 1.0
*/
class RechargeMobileGetItemListRequest
{
private $apiParas = array();
/**
* 手机号码
*/
private $mobileNo;
/**
* 充值面额
*/
private $rechargeAmount;
public function setMobileNo($mobileNo)
{
$this->mobileNo = $mobileNo;
$this->apiParas["mobileNo"] = $mobileNo;
}
public function getMobileNo() {
return $this->mobileNo;
}
public function setRechargeAmount($rechargeAmount)
{
$this->rechargeAmount = $rechargeAmount;
$this->apiParas["rechargeAmount"] = $rechargeAmount;
}
public function getRechargeAmount() {
return $this->rechargeAmount;
}
public function getApiMethodName()
{
return "qianmi.elife.recharge.mobile.getItemList";
}
public function getApiParas()
{
return $this->apiParas;
}
public function check()
{
RequestCheckUtil::checkNotNull($this->mobileNo, "mobileNo");
RequestCheckUtil::checkNotNull($this->rechargeAmount, "rechargeAmount");
}
public function putOtherTextParam($key, $value) {
$this->apiParas[$key] = $value;
$this->$key = $value;
}
}