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

46 lines
736 B
PHP

<?php
/**
* API: bm.elife.recharge.order.info request
*
* @author auto create
* @since 1.0
*/
class BmRechargeOrderInfoRequest
{
private $apiParas = array();
/**
* 订单编号
*/
private $billId;
public function setBillId($billId)
{
$this->billId = $billId;
$this->apiParas["billId"] = $billId;
}
public function getBillId() {
return $this->billId;
}
public function getApiMethodName()
{
return "bm.elife.recharge.order.info";
}
public function getApiParas()
{
return $this->apiParas;
}
public function check()
{
RequestCheckUtil::checkNotNull($this->billId, "billId");
}
public function putOtherTextParam($key, $value) {
$this->apiParas[$key] = $value;
$this->$key = $value;
}
}