46 lines
748 B
PHP
46 lines
748 B
PHP
<?php
|
|
/**
|
|
* API: qianmi.elife.recharge.base.payBill request
|
|
*
|
|
* @author auto create
|
|
* @since 1.0
|
|
*/
|
|
class RechargeBasePayBillRequest
|
|
{
|
|
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 "qianmi.elife.recharge.base.payBill";
|
|
}
|
|
|
|
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;
|
|
}
|
|
}
|