You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
48 lines
701 B
PHP
48 lines
701 B
PHP
<?php
|
|
/**
|
|
* TOP API: alibaba.aliqin.fc.flow.query request
|
|
*
|
|
* @author auto create
|
|
* @since 1.0, 2016.03.30
|
|
*/
|
|
class AlibabaAliqinFcFlowQueryRequest
|
|
{
|
|
/**
|
|
* 唯一流水号
|
|
**/
|
|
private $outId;
|
|
|
|
private $apiParas = array();
|
|
|
|
public function setOutId($outId)
|
|
{
|
|
$this->outId = $outId;
|
|
$this->apiParas["out_id"] = $outId;
|
|
}
|
|
|
|
public function getOutId()
|
|
{
|
|
return $this->outId;
|
|
}
|
|
|
|
public function getApiMethodName()
|
|
{
|
|
return "alibaba.aliqin.fc.flow.query";
|
|
}
|
|
|
|
public function getApiParas()
|
|
{
|
|
return $this->apiParas;
|
|
}
|
|
|
|
public function check()
|
|
{
|
|
|
|
}
|
|
|
|
public function putOtherTextParam($key, $value) {
|
|
$this->apiParas[$key] = $value;
|
|
$this->$key = $value;
|
|
}
|
|
}
|