代码初始化
This commit is contained in:
151
extend/Yzh/Model/Dataservice/DailyOrderSummary.php
Normal file
151
extend/Yzh/Model/Dataservice/DailyOrderSummary.php
Normal file
@@ -0,0 +1,151 @@
|
||||
<?php
|
||||
|
||||
namespace Yzh\Model\Dataservice;
|
||||
|
||||
use Yzh\Model\BaseModel;
|
||||
|
||||
/**
|
||||
* 日订单汇总详情
|
||||
* Class DailyOrderSummary
|
||||
*/
|
||||
class DailyOrderSummary extends BaseModel
|
||||
{
|
||||
/**
|
||||
* 订单数量
|
||||
* @var int32
|
||||
*/
|
||||
protected $order_num;
|
||||
/**
|
||||
* 订单金额
|
||||
* @var string
|
||||
*/
|
||||
protected $pay;
|
||||
/**
|
||||
* 加成服务费金额
|
||||
* @var string
|
||||
*/
|
||||
protected $broker_fee;
|
||||
/**
|
||||
* 加成服务费实收金额
|
||||
* @var string
|
||||
*/
|
||||
protected $broker_real_fee;
|
||||
/**
|
||||
* 已抵扣加成服务费金额
|
||||
* @var string
|
||||
*/
|
||||
protected $broker_rebate_fee;
|
||||
/**
|
||||
* 用户加成服务费金额
|
||||
* @var string
|
||||
*/
|
||||
protected $user_fee;
|
||||
|
||||
/**
|
||||
* 订单数量
|
||||
* @var int32 $order_num
|
||||
*/
|
||||
public function setOrderNum($order_num)
|
||||
{
|
||||
$this->order_num = $order_num;
|
||||
}
|
||||
|
||||
/**
|
||||
* 订单数量
|
||||
* @return int32
|
||||
*/
|
||||
public function getOrderNum()
|
||||
{
|
||||
return $this->order_num;
|
||||
}
|
||||
|
||||
/**
|
||||
* 订单金额
|
||||
* @var string $pay
|
||||
*/
|
||||
public function setPay($pay)
|
||||
{
|
||||
$this->pay = $pay;
|
||||
}
|
||||
|
||||
/**
|
||||
* 订单金额
|
||||
* @return string
|
||||
*/
|
||||
public function getPay()
|
||||
{
|
||||
return $this->pay;
|
||||
}
|
||||
|
||||
/**
|
||||
* 加成服务费金额
|
||||
* @var string $broker_fee
|
||||
*/
|
||||
public function setBrokerFee($broker_fee)
|
||||
{
|
||||
$this->broker_fee = $broker_fee;
|
||||
}
|
||||
|
||||
/**
|
||||
* 加成服务费金额
|
||||
* @return string
|
||||
*/
|
||||
public function getBrokerFee()
|
||||
{
|
||||
return $this->broker_fee;
|
||||
}
|
||||
|
||||
/**
|
||||
* 加成服务费实收金额
|
||||
* @var string $broker_real_fee
|
||||
*/
|
||||
public function setBrokerRealFee($broker_real_fee)
|
||||
{
|
||||
$this->broker_real_fee = $broker_real_fee;
|
||||
}
|
||||
|
||||
/**
|
||||
* 加成服务费实收金额
|
||||
* @return string
|
||||
*/
|
||||
public function getBrokerRealFee()
|
||||
{
|
||||
return $this->broker_real_fee;
|
||||
}
|
||||
|
||||
/**
|
||||
* 已抵扣加成服务费金额
|
||||
* @var string $broker_rebate_fee
|
||||
*/
|
||||
public function setBrokerRebateFee($broker_rebate_fee)
|
||||
{
|
||||
$this->broker_rebate_fee = $broker_rebate_fee;
|
||||
}
|
||||
|
||||
/**
|
||||
* 已抵扣加成服务费金额
|
||||
* @return string
|
||||
*/
|
||||
public function getBrokerRebateFee()
|
||||
{
|
||||
return $this->broker_rebate_fee;
|
||||
}
|
||||
|
||||
/**
|
||||
* 用户加成服务费金额
|
||||
* @var string $user_fee
|
||||
*/
|
||||
public function setUserFee($user_fee)
|
||||
{
|
||||
$this->user_fee = $user_fee;
|
||||
}
|
||||
|
||||
/**
|
||||
* 用户加成服务费金额
|
||||
* @return string
|
||||
*/
|
||||
public function getUserFee()
|
||||
{
|
||||
return $this->user_fee;
|
||||
}
|
||||
}
|
||||
358
extend/Yzh/Model/Dataservice/DealerBillInfo.php
Normal file
358
extend/Yzh/Model/Dataservice/DealerBillInfo.php
Normal file
@@ -0,0 +1,358 @@
|
||||
<?php
|
||||
|
||||
namespace Yzh\Model\Dataservice;
|
||||
|
||||
use Yzh\Model\BaseModel;
|
||||
|
||||
/**
|
||||
* 流水详情
|
||||
* Class DealerBillInfo
|
||||
*/
|
||||
class DealerBillInfo extends BaseModel
|
||||
{
|
||||
/**
|
||||
* 综合服务主体 ID
|
||||
* @var string
|
||||
*/
|
||||
protected $broker_id;
|
||||
/**
|
||||
* 平台企业 ID
|
||||
* @var string
|
||||
*/
|
||||
protected $dealer_id;
|
||||
/**
|
||||
* 平台企业订单号
|
||||
* @var string
|
||||
*/
|
||||
protected $order_id;
|
||||
/**
|
||||
* 资金流水号
|
||||
* @var string
|
||||
*/
|
||||
protected $ref;
|
||||
/**
|
||||
* 综合服务主体名称
|
||||
* @var string
|
||||
*/
|
||||
protected $broker_product_name;
|
||||
/**
|
||||
* 平台企业名称
|
||||
* @var string
|
||||
*/
|
||||
protected $dealer_product_name;
|
||||
/**
|
||||
* 业务订单流水号
|
||||
* @var string
|
||||
*/
|
||||
protected $biz_ref;
|
||||
/**
|
||||
* 账户类型
|
||||
* @var string
|
||||
*/
|
||||
protected $acct_type;
|
||||
/**
|
||||
* 入账金额
|
||||
* @var string
|
||||
*/
|
||||
protected $amount;
|
||||
/**
|
||||
* 账户余额
|
||||
* @var string
|
||||
*/
|
||||
protected $balance;
|
||||
/**
|
||||
* 业务分类
|
||||
* @var string
|
||||
*/
|
||||
protected $business_category;
|
||||
/**
|
||||
* 业务类型
|
||||
* @var string
|
||||
*/
|
||||
protected $business_type;
|
||||
/**
|
||||
* 收支类型
|
||||
* @var string
|
||||
*/
|
||||
protected $consumption_type;
|
||||
/**
|
||||
* 入账时间
|
||||
* @var string
|
||||
*/
|
||||
protected $created_at;
|
||||
/**
|
||||
* 备注
|
||||
* @var string
|
||||
*/
|
||||
protected $remark;
|
||||
|
||||
/**
|
||||
* 综合服务主体 ID
|
||||
* @var string $broker_id
|
||||
*/
|
||||
public function setBrokerId($broker_id)
|
||||
{
|
||||
$this->broker_id = $broker_id;
|
||||
}
|
||||
|
||||
/**
|
||||
* 综合服务主体 ID
|
||||
* @return string
|
||||
*/
|
||||
public function getBrokerId()
|
||||
{
|
||||
return $this->broker_id;
|
||||
}
|
||||
|
||||
/**
|
||||
* 平台企业 ID
|
||||
* @var string $dealer_id
|
||||
*/
|
||||
public function setDealerId($dealer_id)
|
||||
{
|
||||
$this->dealer_id = $dealer_id;
|
||||
}
|
||||
|
||||
/**
|
||||
* 平台企业 ID
|
||||
* @return string
|
||||
*/
|
||||
public function getDealerId()
|
||||
{
|
||||
return $this->dealer_id;
|
||||
}
|
||||
|
||||
/**
|
||||
* 平台企业订单号
|
||||
* @var string $order_id
|
||||
*/
|
||||
public function setOrderId($order_id)
|
||||
{
|
||||
$this->order_id = $order_id;
|
||||
}
|
||||
|
||||
/**
|
||||
* 平台企业订单号
|
||||
* @return string
|
||||
*/
|
||||
public function getOrderId()
|
||||
{
|
||||
return $this->order_id;
|
||||
}
|
||||
|
||||
/**
|
||||
* 资金流水号
|
||||
* @var string $ref
|
||||
*/
|
||||
public function setRef($ref)
|
||||
{
|
||||
$this->ref = $ref;
|
||||
}
|
||||
|
||||
/**
|
||||
* 资金流水号
|
||||
* @return string
|
||||
*/
|
||||
public function getRef()
|
||||
{
|
||||
return $this->ref;
|
||||
}
|
||||
|
||||
/**
|
||||
* 综合服务主体名称
|
||||
* @var string $broker_product_name
|
||||
*/
|
||||
public function setBrokerProductName($broker_product_name)
|
||||
{
|
||||
$this->broker_product_name = $broker_product_name;
|
||||
}
|
||||
|
||||
/**
|
||||
* 综合服务主体名称
|
||||
* @return string
|
||||
*/
|
||||
public function getBrokerProductName()
|
||||
{
|
||||
return $this->broker_product_name;
|
||||
}
|
||||
|
||||
/**
|
||||
* 平台企业名称
|
||||
* @var string $dealer_product_name
|
||||
*/
|
||||
public function setDealerProductName($dealer_product_name)
|
||||
{
|
||||
$this->dealer_product_name = $dealer_product_name;
|
||||
}
|
||||
|
||||
/**
|
||||
* 平台企业名称
|
||||
* @return string
|
||||
*/
|
||||
public function getDealerProductName()
|
||||
{
|
||||
return $this->dealer_product_name;
|
||||
}
|
||||
|
||||
/**
|
||||
* 业务订单流水号
|
||||
* @var string $biz_ref
|
||||
*/
|
||||
public function setBizRef($biz_ref)
|
||||
{
|
||||
$this->biz_ref = $biz_ref;
|
||||
}
|
||||
|
||||
/**
|
||||
* 业务订单流水号
|
||||
* @return string
|
||||
*/
|
||||
public function getBizRef()
|
||||
{
|
||||
return $this->biz_ref;
|
||||
}
|
||||
|
||||
/**
|
||||
* 账户类型
|
||||
* @var string $acct_type
|
||||
*/
|
||||
public function setAcctType($acct_type)
|
||||
{
|
||||
$this->acct_type = $acct_type;
|
||||
}
|
||||
|
||||
/**
|
||||
* 账户类型
|
||||
* @return string
|
||||
*/
|
||||
public function getAcctType()
|
||||
{
|
||||
return $this->acct_type;
|
||||
}
|
||||
|
||||
/**
|
||||
* 入账金额
|
||||
* @var string $amount
|
||||
*/
|
||||
public function setAmount($amount)
|
||||
{
|
||||
$this->amount = $amount;
|
||||
}
|
||||
|
||||
/**
|
||||
* 入账金额
|
||||
* @return string
|
||||
*/
|
||||
public function getAmount()
|
||||
{
|
||||
return $this->amount;
|
||||
}
|
||||
|
||||
/**
|
||||
* 账户余额
|
||||
* @var string $balance
|
||||
*/
|
||||
public function setBalance($balance)
|
||||
{
|
||||
$this->balance = $balance;
|
||||
}
|
||||
|
||||
/**
|
||||
* 账户余额
|
||||
* @return string
|
||||
*/
|
||||
public function getBalance()
|
||||
{
|
||||
return $this->balance;
|
||||
}
|
||||
|
||||
/**
|
||||
* 业务分类
|
||||
* @var string $business_category
|
||||
*/
|
||||
public function setBusinessCategory($business_category)
|
||||
{
|
||||
$this->business_category = $business_category;
|
||||
}
|
||||
|
||||
/**
|
||||
* 业务分类
|
||||
* @return string
|
||||
*/
|
||||
public function getBusinessCategory()
|
||||
{
|
||||
return $this->business_category;
|
||||
}
|
||||
|
||||
/**
|
||||
* 业务类型
|
||||
* @var string $business_type
|
||||
*/
|
||||
public function setBusinessType($business_type)
|
||||
{
|
||||
$this->business_type = $business_type;
|
||||
}
|
||||
|
||||
/**
|
||||
* 业务类型
|
||||
* @return string
|
||||
*/
|
||||
public function getBusinessType()
|
||||
{
|
||||
return $this->business_type;
|
||||
}
|
||||
|
||||
/**
|
||||
* 收支类型
|
||||
* @var string $consumption_type
|
||||
*/
|
||||
public function setConsumptionType($consumption_type)
|
||||
{
|
||||
$this->consumption_type = $consumption_type;
|
||||
}
|
||||
|
||||
/**
|
||||
* 收支类型
|
||||
* @return string
|
||||
*/
|
||||
public function getConsumptionType()
|
||||
{
|
||||
return $this->consumption_type;
|
||||
}
|
||||
|
||||
/**
|
||||
* 入账时间
|
||||
* @var string $created_at
|
||||
*/
|
||||
public function setCreatedAt($created_at)
|
||||
{
|
||||
$this->created_at = $created_at;
|
||||
}
|
||||
|
||||
/**
|
||||
* 入账时间
|
||||
* @return string
|
||||
*/
|
||||
public function getCreatedAt()
|
||||
{
|
||||
return $this->created_at;
|
||||
}
|
||||
|
||||
/**
|
||||
* 备注
|
||||
* @var string $remark
|
||||
*/
|
||||
public function setRemark($remark)
|
||||
{
|
||||
$this->remark = $remark;
|
||||
}
|
||||
|
||||
/**
|
||||
* 备注
|
||||
* @return string
|
||||
*/
|
||||
public function getRemark()
|
||||
{
|
||||
return $this->remark;
|
||||
}
|
||||
}
|
||||
496
extend/Yzh/Model/Dataservice/DealerOrderInfo.php
Normal file
496
extend/Yzh/Model/Dataservice/DealerOrderInfo.php
Normal file
@@ -0,0 +1,496 @@
|
||||
<?php
|
||||
|
||||
namespace Yzh\Model\Dataservice;
|
||||
|
||||
use Yzh\Model\BaseModel;
|
||||
|
||||
/**
|
||||
* 平台企业支付订单信息
|
||||
* Class DealerOrderInfo
|
||||
*/
|
||||
class DealerOrderInfo extends BaseModel
|
||||
{
|
||||
/**
|
||||
* 综合服务主体 ID
|
||||
* @var string
|
||||
*/
|
||||
protected $broker_id;
|
||||
/**
|
||||
* 平台企业 ID
|
||||
* @var string
|
||||
*/
|
||||
protected $dealer_id;
|
||||
/**
|
||||
* 平台企业订单号
|
||||
* @var string
|
||||
*/
|
||||
protected $order_id;
|
||||
/**
|
||||
* 订单流水号
|
||||
* @var string
|
||||
*/
|
||||
protected $ref;
|
||||
/**
|
||||
* 批次ID
|
||||
* @var string
|
||||
*/
|
||||
protected $batch_id;
|
||||
/**
|
||||
* 姓名
|
||||
* @var string
|
||||
*/
|
||||
protected $real_name;
|
||||
/**
|
||||
* 收款账号
|
||||
* @var string
|
||||
*/
|
||||
protected $card_no;
|
||||
/**
|
||||
* 综合服务主体订单金额
|
||||
* @var string
|
||||
*/
|
||||
protected $broker_amount;
|
||||
/**
|
||||
* 综合服务主体加成服务费
|
||||
* @var string
|
||||
*/
|
||||
protected $broker_fee;
|
||||
/**
|
||||
* 支付路径流水号
|
||||
* @var string
|
||||
*/
|
||||
protected $bill;
|
||||
/**
|
||||
* 订单状态
|
||||
* @var string
|
||||
*/
|
||||
protected $status;
|
||||
/**
|
||||
* 订单状态码描述
|
||||
* @var string
|
||||
*/
|
||||
protected $status_message;
|
||||
/**
|
||||
* 订单详情
|
||||
* @var string
|
||||
*/
|
||||
protected $status_detail;
|
||||
/**
|
||||
* 订单详细状态码描述
|
||||
* @var string
|
||||
*/
|
||||
protected $status_detail_message;
|
||||
/**
|
||||
* 订单状态补充信息
|
||||
* @var string
|
||||
*/
|
||||
protected $supplemental_detail_message;
|
||||
/**
|
||||
* 短周期授信账单号
|
||||
* @var string
|
||||
*/
|
||||
protected $statement_id;
|
||||
/**
|
||||
* 服务费账单号
|
||||
* @var string
|
||||
*/
|
||||
protected $fee_statement_id;
|
||||
/**
|
||||
* 余额账单号
|
||||
* @var string
|
||||
*/
|
||||
protected $bal_statement_id;
|
||||
/**
|
||||
* 支付路径
|
||||
* @var string
|
||||
*/
|
||||
protected $channel;
|
||||
/**
|
||||
* 创建时间
|
||||
* @var string
|
||||
*/
|
||||
protected $created_at;
|
||||
/**
|
||||
* 完成时间
|
||||
* @var string
|
||||
*/
|
||||
protected $finished_time;
|
||||
|
||||
/**
|
||||
* 综合服务主体 ID
|
||||
* @var string $broker_id
|
||||
*/
|
||||
public function setBrokerId($broker_id)
|
||||
{
|
||||
$this->broker_id = $broker_id;
|
||||
}
|
||||
|
||||
/**
|
||||
* 综合服务主体 ID
|
||||
* @return string
|
||||
*/
|
||||
public function getBrokerId()
|
||||
{
|
||||
return $this->broker_id;
|
||||
}
|
||||
|
||||
/**
|
||||
* 平台企业 ID
|
||||
* @var string $dealer_id
|
||||
*/
|
||||
public function setDealerId($dealer_id)
|
||||
{
|
||||
$this->dealer_id = $dealer_id;
|
||||
}
|
||||
|
||||
/**
|
||||
* 平台企业 ID
|
||||
* @return string
|
||||
*/
|
||||
public function getDealerId()
|
||||
{
|
||||
return $this->dealer_id;
|
||||
}
|
||||
|
||||
/**
|
||||
* 平台企业订单号
|
||||
* @var string $order_id
|
||||
*/
|
||||
public function setOrderId($order_id)
|
||||
{
|
||||
$this->order_id = $order_id;
|
||||
}
|
||||
|
||||
/**
|
||||
* 平台企业订单号
|
||||
* @return string
|
||||
*/
|
||||
public function getOrderId()
|
||||
{
|
||||
return $this->order_id;
|
||||
}
|
||||
|
||||
/**
|
||||
* 订单流水号
|
||||
* @var string $ref
|
||||
*/
|
||||
public function setRef($ref)
|
||||
{
|
||||
$this->ref = $ref;
|
||||
}
|
||||
|
||||
/**
|
||||
* 订单流水号
|
||||
* @return string
|
||||
*/
|
||||
public function getRef()
|
||||
{
|
||||
return $this->ref;
|
||||
}
|
||||
|
||||
/**
|
||||
* 批次ID
|
||||
* @var string $batch_id
|
||||
*/
|
||||
public function setBatchId($batch_id)
|
||||
{
|
||||
$this->batch_id = $batch_id;
|
||||
}
|
||||
|
||||
/**
|
||||
* 批次ID
|
||||
* @return string
|
||||
*/
|
||||
public function getBatchId()
|
||||
{
|
||||
return $this->batch_id;
|
||||
}
|
||||
|
||||
/**
|
||||
* 姓名
|
||||
* @var string $real_name
|
||||
*/
|
||||
public function setRealName($real_name)
|
||||
{
|
||||
$this->real_name = $real_name;
|
||||
}
|
||||
|
||||
/**
|
||||
* 姓名
|
||||
* @return string
|
||||
*/
|
||||
public function getRealName()
|
||||
{
|
||||
return $this->real_name;
|
||||
}
|
||||
|
||||
/**
|
||||
* 收款账号
|
||||
* @var string $card_no
|
||||
*/
|
||||
public function setCardNo($card_no)
|
||||
{
|
||||
$this->card_no = $card_no;
|
||||
}
|
||||
|
||||
/**
|
||||
* 收款账号
|
||||
* @return string
|
||||
*/
|
||||
public function getCardNo()
|
||||
{
|
||||
return $this->card_no;
|
||||
}
|
||||
|
||||
/**
|
||||
* 综合服务主体订单金额
|
||||
* @var string $broker_amount
|
||||
*/
|
||||
public function setBrokerAmount($broker_amount)
|
||||
{
|
||||
$this->broker_amount = $broker_amount;
|
||||
}
|
||||
|
||||
/**
|
||||
* 综合服务主体订单金额
|
||||
* @return string
|
||||
*/
|
||||
public function getBrokerAmount()
|
||||
{
|
||||
return $this->broker_amount;
|
||||
}
|
||||
|
||||
/**
|
||||
* 综合服务主体加成服务费
|
||||
* @var string $broker_fee
|
||||
*/
|
||||
public function setBrokerFee($broker_fee)
|
||||
{
|
||||
$this->broker_fee = $broker_fee;
|
||||
}
|
||||
|
||||
/**
|
||||
* 综合服务主体加成服务费
|
||||
* @return string
|
||||
*/
|
||||
public function getBrokerFee()
|
||||
{
|
||||
return $this->broker_fee;
|
||||
}
|
||||
|
||||
/**
|
||||
* 支付路径流水号
|
||||
* @var string $bill
|
||||
*/
|
||||
public function setBill($bill)
|
||||
{
|
||||
$this->bill = $bill;
|
||||
}
|
||||
|
||||
/**
|
||||
* 支付路径流水号
|
||||
* @return string
|
||||
*/
|
||||
public function getBill()
|
||||
{
|
||||
return $this->bill;
|
||||
}
|
||||
|
||||
/**
|
||||
* 订单状态
|
||||
* @var string $status
|
||||
*/
|
||||
public function setStatus($status)
|
||||
{
|
||||
$this->status = $status;
|
||||
}
|
||||
|
||||
/**
|
||||
* 订单状态
|
||||
* @return string
|
||||
*/
|
||||
public function getStatus()
|
||||
{
|
||||
return $this->status;
|
||||
}
|
||||
|
||||
/**
|
||||
* 订单状态码描述
|
||||
* @var string $status_message
|
||||
*/
|
||||
public function setStatusMessage($status_message)
|
||||
{
|
||||
$this->status_message = $status_message;
|
||||
}
|
||||
|
||||
/**
|
||||
* 订单状态码描述
|
||||
* @return string
|
||||
*/
|
||||
public function getStatusMessage()
|
||||
{
|
||||
return $this->status_message;
|
||||
}
|
||||
|
||||
/**
|
||||
* 订单详情
|
||||
* @var string $status_detail
|
||||
*/
|
||||
public function setStatusDetail($status_detail)
|
||||
{
|
||||
$this->status_detail = $status_detail;
|
||||
}
|
||||
|
||||
/**
|
||||
* 订单详情
|
||||
* @return string
|
||||
*/
|
||||
public function getStatusDetail()
|
||||
{
|
||||
return $this->status_detail;
|
||||
}
|
||||
|
||||
/**
|
||||
* 订单详细状态码描述
|
||||
* @var string $status_detail_message
|
||||
*/
|
||||
public function setStatusDetailMessage($status_detail_message)
|
||||
{
|
||||
$this->status_detail_message = $status_detail_message;
|
||||
}
|
||||
|
||||
/**
|
||||
* 订单详细状态码描述
|
||||
* @return string
|
||||
*/
|
||||
public function getStatusDetailMessage()
|
||||
{
|
||||
return $this->status_detail_message;
|
||||
}
|
||||
|
||||
/**
|
||||
* 订单状态补充信息
|
||||
* @var string $supplemental_detail_message
|
||||
*/
|
||||
public function setSupplementalDetailMessage($supplemental_detail_message)
|
||||
{
|
||||
$this->supplemental_detail_message = $supplemental_detail_message;
|
||||
}
|
||||
|
||||
/**
|
||||
* 订单状态补充信息
|
||||
* @return string
|
||||
*/
|
||||
public function getSupplementalDetailMessage()
|
||||
{
|
||||
return $this->supplemental_detail_message;
|
||||
}
|
||||
|
||||
/**
|
||||
* 短周期授信账单号
|
||||
* @var string $statement_id
|
||||
*/
|
||||
public function setStatementId($statement_id)
|
||||
{
|
||||
$this->statement_id = $statement_id;
|
||||
}
|
||||
|
||||
/**
|
||||
* 短周期授信账单号
|
||||
* @return string
|
||||
*/
|
||||
public function getStatementId()
|
||||
{
|
||||
return $this->statement_id;
|
||||
}
|
||||
|
||||
/**
|
||||
* 服务费账单号
|
||||
* @var string $fee_statement_id
|
||||
*/
|
||||
public function setFeeStatementId($fee_statement_id)
|
||||
{
|
||||
$this->fee_statement_id = $fee_statement_id;
|
||||
}
|
||||
|
||||
/**
|
||||
* 服务费账单号
|
||||
* @return string
|
||||
*/
|
||||
public function getFeeStatementId()
|
||||
{
|
||||
return $this->fee_statement_id;
|
||||
}
|
||||
|
||||
/**
|
||||
* 余额账单号
|
||||
* @var string $bal_statement_id
|
||||
*/
|
||||
public function setBalStatementId($bal_statement_id)
|
||||
{
|
||||
$this->bal_statement_id = $bal_statement_id;
|
||||
}
|
||||
|
||||
/**
|
||||
* 余额账单号
|
||||
* @return string
|
||||
*/
|
||||
public function getBalStatementId()
|
||||
{
|
||||
return $this->bal_statement_id;
|
||||
}
|
||||
|
||||
/**
|
||||
* 支付路径
|
||||
* @var string $channel
|
||||
*/
|
||||
public function setChannel($channel)
|
||||
{
|
||||
$this->channel = $channel;
|
||||
}
|
||||
|
||||
/**
|
||||
* 支付路径
|
||||
* @return string
|
||||
*/
|
||||
public function getChannel()
|
||||
{
|
||||
return $this->channel;
|
||||
}
|
||||
|
||||
/**
|
||||
* 创建时间
|
||||
* @var string $created_at
|
||||
*/
|
||||
public function setCreatedAt($created_at)
|
||||
{
|
||||
$this->created_at = $created_at;
|
||||
}
|
||||
|
||||
/**
|
||||
* 创建时间
|
||||
* @return string
|
||||
*/
|
||||
public function getCreatedAt()
|
||||
{
|
||||
return $this->created_at;
|
||||
}
|
||||
|
||||
/**
|
||||
* 完成时间
|
||||
* @var string $finished_time
|
||||
*/
|
||||
public function setFinishedTime($finished_time)
|
||||
{
|
||||
$this->finished_time = $finished_time;
|
||||
}
|
||||
|
||||
/**
|
||||
* 完成时间
|
||||
* @return string
|
||||
*/
|
||||
public function getFinishedTime()
|
||||
{
|
||||
return $this->finished_time;
|
||||
}
|
||||
}
|
||||
565
extend/Yzh/Model/Dataservice/DealerOrderInfoV2.php
Normal file
565
extend/Yzh/Model/Dataservice/DealerOrderInfoV2.php
Normal file
@@ -0,0 +1,565 @@
|
||||
<?php
|
||||
|
||||
namespace Yzh\Model\Dataservice;
|
||||
|
||||
use Yzh\Model\BaseModel;
|
||||
|
||||
/**
|
||||
* 平台企业支付订单信息(支付和退款订单)
|
||||
* Class DealerOrderInfoV2
|
||||
*/
|
||||
class DealerOrderInfoV2 extends BaseModel
|
||||
{
|
||||
/**
|
||||
* 综合服务主体 ID
|
||||
* @var string
|
||||
*/
|
||||
protected $broker_id;
|
||||
/**
|
||||
* 平台企业 ID
|
||||
* @var string
|
||||
*/
|
||||
protected $dealer_id;
|
||||
/**
|
||||
* 订单类型
|
||||
* @var string
|
||||
*/
|
||||
protected $order_type;
|
||||
/**
|
||||
* 平台企业订单号
|
||||
* @var string
|
||||
*/
|
||||
protected $order_id;
|
||||
/**
|
||||
* 综合服务平台流水号
|
||||
* @var string
|
||||
*/
|
||||
protected $ref;
|
||||
/**
|
||||
* 批次号
|
||||
* @var string
|
||||
*/
|
||||
protected $batch_id;
|
||||
/**
|
||||
* 姓名
|
||||
* @var string
|
||||
*/
|
||||
protected $real_name;
|
||||
/**
|
||||
* 收款账号
|
||||
* @var string
|
||||
*/
|
||||
protected $card_no;
|
||||
/**
|
||||
* 综合服务主体订单金额
|
||||
* @var string
|
||||
*/
|
||||
protected $broker_amount;
|
||||
/**
|
||||
* 综合服务主体加成服务费
|
||||
* @var string
|
||||
*/
|
||||
protected $broker_fee;
|
||||
/**
|
||||
* 支付路径流水号
|
||||
* @var string
|
||||
*/
|
||||
protected $bill;
|
||||
/**
|
||||
* 订单状态码
|
||||
* @var string
|
||||
*/
|
||||
protected $status;
|
||||
/**
|
||||
* 订单状态码描述
|
||||
* @var string
|
||||
*/
|
||||
protected $status_message;
|
||||
/**
|
||||
* 订单详情状态码
|
||||
* @var string
|
||||
*/
|
||||
protected $status_detail;
|
||||
/**
|
||||
* 订单详细状态码描述
|
||||
* @var string
|
||||
*/
|
||||
protected $status_detail_message;
|
||||
/**
|
||||
* 订单状态补充信息
|
||||
* @var string
|
||||
*/
|
||||
protected $supplemental_detail_message;
|
||||
/**
|
||||
* 短周期授信账单号
|
||||
* @var string
|
||||
*/
|
||||
protected $statement_id;
|
||||
/**
|
||||
* 加成服务费账单号
|
||||
* @var string
|
||||
*/
|
||||
protected $fee_statement_id;
|
||||
/**
|
||||
* 余额账单号
|
||||
* @var string
|
||||
*/
|
||||
protected $bal_statement_id;
|
||||
/**
|
||||
* 支付路径
|
||||
* @var string
|
||||
*/
|
||||
protected $channel;
|
||||
/**
|
||||
* 订单接收时间
|
||||
* @var string
|
||||
*/
|
||||
protected $created_at;
|
||||
/**
|
||||
* 订单完成时间
|
||||
* @var string
|
||||
*/
|
||||
protected $finished_time;
|
||||
/**
|
||||
* 退款类型
|
||||
* @var string
|
||||
*/
|
||||
protected $refund_type;
|
||||
/**
|
||||
* 原支付流水号
|
||||
* @var string
|
||||
*/
|
||||
protected $pay_ref;
|
||||
|
||||
/**
|
||||
* 综合服务主体 ID
|
||||
* @var string $broker_id
|
||||
*/
|
||||
public function setBrokerId($broker_id)
|
||||
{
|
||||
$this->broker_id = $broker_id;
|
||||
}
|
||||
|
||||
/**
|
||||
* 综合服务主体 ID
|
||||
* @return string
|
||||
*/
|
||||
public function getBrokerId()
|
||||
{
|
||||
return $this->broker_id;
|
||||
}
|
||||
|
||||
/**
|
||||
* 平台企业 ID
|
||||
* @var string $dealer_id
|
||||
*/
|
||||
public function setDealerId($dealer_id)
|
||||
{
|
||||
$this->dealer_id = $dealer_id;
|
||||
}
|
||||
|
||||
/**
|
||||
* 平台企业 ID
|
||||
* @return string
|
||||
*/
|
||||
public function getDealerId()
|
||||
{
|
||||
return $this->dealer_id;
|
||||
}
|
||||
|
||||
/**
|
||||
* 订单类型
|
||||
* @var string $order_type
|
||||
*/
|
||||
public function setOrderType($order_type)
|
||||
{
|
||||
$this->order_type = $order_type;
|
||||
}
|
||||
|
||||
/**
|
||||
* 订单类型
|
||||
* @return string
|
||||
*/
|
||||
public function getOrderType()
|
||||
{
|
||||
return $this->order_type;
|
||||
}
|
||||
|
||||
/**
|
||||
* 平台企业订单号
|
||||
* @var string $order_id
|
||||
*/
|
||||
public function setOrderId($order_id)
|
||||
{
|
||||
$this->order_id = $order_id;
|
||||
}
|
||||
|
||||
/**
|
||||
* 平台企业订单号
|
||||
* @return string
|
||||
*/
|
||||
public function getOrderId()
|
||||
{
|
||||
return $this->order_id;
|
||||
}
|
||||
|
||||
/**
|
||||
* 综合服务平台流水号
|
||||
* @var string $ref
|
||||
*/
|
||||
public function setRef($ref)
|
||||
{
|
||||
$this->ref = $ref;
|
||||
}
|
||||
|
||||
/**
|
||||
* 综合服务平台流水号
|
||||
* @return string
|
||||
*/
|
||||
public function getRef()
|
||||
{
|
||||
return $this->ref;
|
||||
}
|
||||
|
||||
/**
|
||||
* 批次号
|
||||
* @var string $batch_id
|
||||
*/
|
||||
public function setBatchId($batch_id)
|
||||
{
|
||||
$this->batch_id = $batch_id;
|
||||
}
|
||||
|
||||
/**
|
||||
* 批次号
|
||||
* @return string
|
||||
*/
|
||||
public function getBatchId()
|
||||
{
|
||||
return $this->batch_id;
|
||||
}
|
||||
|
||||
/**
|
||||
* 姓名
|
||||
* @var string $real_name
|
||||
*/
|
||||
public function setRealName($real_name)
|
||||
{
|
||||
$this->real_name = $real_name;
|
||||
}
|
||||
|
||||
/**
|
||||
* 姓名
|
||||
* @return string
|
||||
*/
|
||||
public function getRealName()
|
||||
{
|
||||
return $this->real_name;
|
||||
}
|
||||
|
||||
/**
|
||||
* 收款账号
|
||||
* @var string $card_no
|
||||
*/
|
||||
public function setCardNo($card_no)
|
||||
{
|
||||
$this->card_no = $card_no;
|
||||
}
|
||||
|
||||
/**
|
||||
* 收款账号
|
||||
* @return string
|
||||
*/
|
||||
public function getCardNo()
|
||||
{
|
||||
return $this->card_no;
|
||||
}
|
||||
|
||||
/**
|
||||
* 综合服务主体订单金额
|
||||
* @var string $broker_amount
|
||||
*/
|
||||
public function setBrokerAmount($broker_amount)
|
||||
{
|
||||
$this->broker_amount = $broker_amount;
|
||||
}
|
||||
|
||||
/**
|
||||
* 综合服务主体订单金额
|
||||
* @return string
|
||||
*/
|
||||
public function getBrokerAmount()
|
||||
{
|
||||
return $this->broker_amount;
|
||||
}
|
||||
|
||||
/**
|
||||
* 综合服务主体加成服务费
|
||||
* @var string $broker_fee
|
||||
*/
|
||||
public function setBrokerFee($broker_fee)
|
||||
{
|
||||
$this->broker_fee = $broker_fee;
|
||||
}
|
||||
|
||||
/**
|
||||
* 综合服务主体加成服务费
|
||||
* @return string
|
||||
*/
|
||||
public function getBrokerFee()
|
||||
{
|
||||
return $this->broker_fee;
|
||||
}
|
||||
|
||||
/**
|
||||
* 支付路径流水号
|
||||
* @var string $bill
|
||||
*/
|
||||
public function setBill($bill)
|
||||
{
|
||||
$this->bill = $bill;
|
||||
}
|
||||
|
||||
/**
|
||||
* 支付路径流水号
|
||||
* @return string
|
||||
*/
|
||||
public function getBill()
|
||||
{
|
||||
return $this->bill;
|
||||
}
|
||||
|
||||
/**
|
||||
* 订单状态码
|
||||
* @var string $status
|
||||
*/
|
||||
public function setStatus($status)
|
||||
{
|
||||
$this->status = $status;
|
||||
}
|
||||
|
||||
/**
|
||||
* 订单状态码
|
||||
* @return string
|
||||
*/
|
||||
public function getStatus()
|
||||
{
|
||||
return $this->status;
|
||||
}
|
||||
|
||||
/**
|
||||
* 订单状态码描述
|
||||
* @var string $status_message
|
||||
*/
|
||||
public function setStatusMessage($status_message)
|
||||
{
|
||||
$this->status_message = $status_message;
|
||||
}
|
||||
|
||||
/**
|
||||
* 订单状态码描述
|
||||
* @return string
|
||||
*/
|
||||
public function getStatusMessage()
|
||||
{
|
||||
return $this->status_message;
|
||||
}
|
||||
|
||||
/**
|
||||
* 订单详情状态码
|
||||
* @var string $status_detail
|
||||
*/
|
||||
public function setStatusDetail($status_detail)
|
||||
{
|
||||
$this->status_detail = $status_detail;
|
||||
}
|
||||
|
||||
/**
|
||||
* 订单详情状态码
|
||||
* @return string
|
||||
*/
|
||||
public function getStatusDetail()
|
||||
{
|
||||
return $this->status_detail;
|
||||
}
|
||||
|
||||
/**
|
||||
* 订单详细状态码描述
|
||||
* @var string $status_detail_message
|
||||
*/
|
||||
public function setStatusDetailMessage($status_detail_message)
|
||||
{
|
||||
$this->status_detail_message = $status_detail_message;
|
||||
}
|
||||
|
||||
/**
|
||||
* 订单详细状态码描述
|
||||
* @return string
|
||||
*/
|
||||
public function getStatusDetailMessage()
|
||||
{
|
||||
return $this->status_detail_message;
|
||||
}
|
||||
|
||||
/**
|
||||
* 订单状态补充信息
|
||||
* @var string $supplemental_detail_message
|
||||
*/
|
||||
public function setSupplementalDetailMessage($supplemental_detail_message)
|
||||
{
|
||||
$this->supplemental_detail_message = $supplemental_detail_message;
|
||||
}
|
||||
|
||||
/**
|
||||
* 订单状态补充信息
|
||||
* @return string
|
||||
*/
|
||||
public function getSupplementalDetailMessage()
|
||||
{
|
||||
return $this->supplemental_detail_message;
|
||||
}
|
||||
|
||||
/**
|
||||
* 短周期授信账单号
|
||||
* @var string $statement_id
|
||||
*/
|
||||
public function setStatementId($statement_id)
|
||||
{
|
||||
$this->statement_id = $statement_id;
|
||||
}
|
||||
|
||||
/**
|
||||
* 短周期授信账单号
|
||||
* @return string
|
||||
*/
|
||||
public function getStatementId()
|
||||
{
|
||||
return $this->statement_id;
|
||||
}
|
||||
|
||||
/**
|
||||
* 加成服务费账单号
|
||||
* @var string $fee_statement_id
|
||||
*/
|
||||
public function setFeeStatementId($fee_statement_id)
|
||||
{
|
||||
$this->fee_statement_id = $fee_statement_id;
|
||||
}
|
||||
|
||||
/**
|
||||
* 加成服务费账单号
|
||||
* @return string
|
||||
*/
|
||||
public function getFeeStatementId()
|
||||
{
|
||||
return $this->fee_statement_id;
|
||||
}
|
||||
|
||||
/**
|
||||
* 余额账单号
|
||||
* @var string $bal_statement_id
|
||||
*/
|
||||
public function setBalStatementId($bal_statement_id)
|
||||
{
|
||||
$this->bal_statement_id = $bal_statement_id;
|
||||
}
|
||||
|
||||
/**
|
||||
* 余额账单号
|
||||
* @return string
|
||||
*/
|
||||
public function getBalStatementId()
|
||||
{
|
||||
return $this->bal_statement_id;
|
||||
}
|
||||
|
||||
/**
|
||||
* 支付路径
|
||||
* @var string $channel
|
||||
*/
|
||||
public function setChannel($channel)
|
||||
{
|
||||
$this->channel = $channel;
|
||||
}
|
||||
|
||||
/**
|
||||
* 支付路径
|
||||
* @return string
|
||||
*/
|
||||
public function getChannel()
|
||||
{
|
||||
return $this->channel;
|
||||
}
|
||||
|
||||
/**
|
||||
* 订单接收时间
|
||||
* @var string $created_at
|
||||
*/
|
||||
public function setCreatedAt($created_at)
|
||||
{
|
||||
$this->created_at = $created_at;
|
||||
}
|
||||
|
||||
/**
|
||||
* 订单接收时间
|
||||
* @return string
|
||||
*/
|
||||
public function getCreatedAt()
|
||||
{
|
||||
return $this->created_at;
|
||||
}
|
||||
|
||||
/**
|
||||
* 订单完成时间
|
||||
* @var string $finished_time
|
||||
*/
|
||||
public function setFinishedTime($finished_time)
|
||||
{
|
||||
$this->finished_time = $finished_time;
|
||||
}
|
||||
|
||||
/**
|
||||
* 订单完成时间
|
||||
* @return string
|
||||
*/
|
||||
public function getFinishedTime()
|
||||
{
|
||||
return $this->finished_time;
|
||||
}
|
||||
|
||||
/**
|
||||
* 退款类型
|
||||
* @var string $refund_type
|
||||
*/
|
||||
public function setRefundType($refund_type)
|
||||
{
|
||||
$this->refund_type = $refund_type;
|
||||
}
|
||||
|
||||
/**
|
||||
* 退款类型
|
||||
* @return string
|
||||
*/
|
||||
public function getRefundType()
|
||||
{
|
||||
return $this->refund_type;
|
||||
}
|
||||
|
||||
/**
|
||||
* 原支付流水号
|
||||
* @var string $pay_ref
|
||||
*/
|
||||
public function setPayRef($pay_ref)
|
||||
{
|
||||
$this->pay_ref = $pay_ref;
|
||||
}
|
||||
|
||||
/**
|
||||
* 原支付流水号
|
||||
* @return string
|
||||
*/
|
||||
public function getPayRef()
|
||||
{
|
||||
return $this->pay_ref;
|
||||
}
|
||||
}
|
||||
27
extend/Yzh/Model/Dataservice/GetDailyBillFileV2Request.php
Normal file
27
extend/Yzh/Model/Dataservice/GetDailyBillFileV2Request.php
Normal file
@@ -0,0 +1,27 @@
|
||||
<?php
|
||||
|
||||
namespace Yzh\Model\Dataservice;
|
||||
|
||||
use Yzh\Model\BaseRequest;
|
||||
|
||||
/**
|
||||
* 查询日流水文件请求
|
||||
* Class GetDailyBillFileV2Request
|
||||
*/
|
||||
class GetDailyBillFileV2Request extends BaseRequest
|
||||
{
|
||||
/**
|
||||
* 所需获取的日流水日期,格式:yyyy-MM-dd
|
||||
* @var string
|
||||
*/
|
||||
public $bill_date;
|
||||
|
||||
public function __construct($params = array())
|
||||
{
|
||||
foreach (array_keys(get_object_vars($this)) as $property) {
|
||||
if (isset($params[$property])) {
|
||||
$this->{$property} = $params[$property];
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
33
extend/Yzh/Model/Dataservice/GetDailyBillFileV2Response.php
Normal file
33
extend/Yzh/Model/Dataservice/GetDailyBillFileV2Response.php
Normal file
@@ -0,0 +1,33 @@
|
||||
<?php
|
||||
|
||||
namespace Yzh\Model\Dataservice;
|
||||
|
||||
use Yzh\Model\BaseResponse;
|
||||
use Yzh\Model\ResponseInterface;
|
||||
|
||||
/**
|
||||
* 查询日流水文件返回
|
||||
* Class GetDailyBillFileV2Response
|
||||
*/
|
||||
class GetDailyBillFileV2Response extends BaseResponse implements ResponseInterface
|
||||
{
|
||||
/**
|
||||
* 获取数据对象
|
||||
* @return GetDailyBillFileV2ResponseData
|
||||
*/
|
||||
public function getData()
|
||||
{
|
||||
return $this->data;
|
||||
}
|
||||
|
||||
/**
|
||||
* 设置数据对象
|
||||
* @param array $data
|
||||
* @return self
|
||||
*/
|
||||
public function setData($data)
|
||||
{
|
||||
$this->data = new GetDailyBillFileV2ResponseData($data);
|
||||
return $this;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,37 @@
|
||||
<?php
|
||||
|
||||
namespace Yzh\Model\Dataservice;
|
||||
|
||||
use Yzh\Model\BaseModel;
|
||||
use Yzh\Model\ResponseDataInterface;
|
||||
|
||||
/**
|
||||
* 查询日流水文件返回
|
||||
* Class GetDailyBillFileV2ResponseData
|
||||
*/
|
||||
class GetDailyBillFileV2ResponseData extends BaseModel implements ResponseDataInterface
|
||||
{
|
||||
/**
|
||||
* 下载地址
|
||||
* @var string
|
||||
*/
|
||||
protected $bill_download_url;
|
||||
|
||||
/**
|
||||
* 下载地址
|
||||
* @var string $bill_download_url
|
||||
*/
|
||||
public function setBillDownloadUrl($bill_download_url)
|
||||
{
|
||||
$this->bill_download_url = $bill_download_url;
|
||||
}
|
||||
|
||||
/**
|
||||
* 下载地址
|
||||
* @return string
|
||||
*/
|
||||
public function getBillDownloadUrl()
|
||||
{
|
||||
return $this->bill_download_url;
|
||||
}
|
||||
}
|
||||
27
extend/Yzh/Model/Dataservice/GetDailyOrderFileRequest.php
Normal file
27
extend/Yzh/Model/Dataservice/GetDailyOrderFileRequest.php
Normal file
@@ -0,0 +1,27 @@
|
||||
<?php
|
||||
|
||||
namespace Yzh\Model\Dataservice;
|
||||
|
||||
use Yzh\Model\BaseRequest;
|
||||
|
||||
/**
|
||||
* 查询日订单文件请求
|
||||
* Class GetDailyOrderFileRequest
|
||||
*/
|
||||
class GetDailyOrderFileRequest extends BaseRequest
|
||||
{
|
||||
/**
|
||||
* 订单查询日期, 格式:yyyy-MM-dd
|
||||
* @var string
|
||||
*/
|
||||
public $order_date;
|
||||
|
||||
public function __construct($params = array())
|
||||
{
|
||||
foreach (array_keys(get_object_vars($this)) as $property) {
|
||||
if (isset($params[$property])) {
|
||||
$this->{$property} = $params[$property];
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
33
extend/Yzh/Model/Dataservice/GetDailyOrderFileResponse.php
Normal file
33
extend/Yzh/Model/Dataservice/GetDailyOrderFileResponse.php
Normal file
@@ -0,0 +1,33 @@
|
||||
<?php
|
||||
|
||||
namespace Yzh\Model\Dataservice;
|
||||
|
||||
use Yzh\Model\BaseResponse;
|
||||
use Yzh\Model\ResponseInterface;
|
||||
|
||||
/**
|
||||
* 查询日订单文件返回
|
||||
* Class GetDailyOrderFileResponse
|
||||
*/
|
||||
class GetDailyOrderFileResponse extends BaseResponse implements ResponseInterface
|
||||
{
|
||||
/**
|
||||
* 获取数据对象
|
||||
* @return GetDailyOrderFileResponseData
|
||||
*/
|
||||
public function getData()
|
||||
{
|
||||
return $this->data;
|
||||
}
|
||||
|
||||
/**
|
||||
* 设置数据对象
|
||||
* @param array $data
|
||||
* @return self
|
||||
*/
|
||||
public function setData($data)
|
||||
{
|
||||
$this->data = new GetDailyOrderFileResponseData($data);
|
||||
return $this;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,37 @@
|
||||
<?php
|
||||
|
||||
namespace Yzh\Model\Dataservice;
|
||||
|
||||
use Yzh\Model\BaseModel;
|
||||
use Yzh\Model\ResponseDataInterface;
|
||||
|
||||
/**
|
||||
* 查询日订单文件返回
|
||||
* Class GetDailyOrderFileResponseData
|
||||
*/
|
||||
class GetDailyOrderFileResponseData extends BaseModel implements ResponseDataInterface
|
||||
{
|
||||
/**
|
||||
* 下载地址
|
||||
* @var string
|
||||
*/
|
||||
protected $order_download_url;
|
||||
|
||||
/**
|
||||
* 下载地址
|
||||
* @var string $order_download_url
|
||||
*/
|
||||
public function setOrderDownloadUrl($order_download_url)
|
||||
{
|
||||
$this->order_download_url = $order_download_url;
|
||||
}
|
||||
|
||||
/**
|
||||
* 下载地址
|
||||
* @return string
|
||||
*/
|
||||
public function getOrderDownloadUrl()
|
||||
{
|
||||
return $this->order_download_url;
|
||||
}
|
||||
}
|
||||
27
extend/Yzh/Model/Dataservice/GetDailyOrderFileV2Request.php
Normal file
27
extend/Yzh/Model/Dataservice/GetDailyOrderFileV2Request.php
Normal file
@@ -0,0 +1,27 @@
|
||||
<?php
|
||||
|
||||
namespace Yzh\Model\Dataservice;
|
||||
|
||||
use Yzh\Model\BaseRequest;
|
||||
|
||||
/**
|
||||
* 查询日订单文件(支付和退款订单)请求
|
||||
* Class GetDailyOrderFileV2Request
|
||||
*/
|
||||
class GetDailyOrderFileV2Request extends BaseRequest
|
||||
{
|
||||
/**
|
||||
* 订单查询日期, 格式:yyyy-MM-dd
|
||||
* @var string
|
||||
*/
|
||||
public $order_date;
|
||||
|
||||
public function __construct($params = array())
|
||||
{
|
||||
foreach (array_keys(get_object_vars($this)) as $property) {
|
||||
if (isset($params[$property])) {
|
||||
$this->{$property} = $params[$property];
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
33
extend/Yzh/Model/Dataservice/GetDailyOrderFileV2Response.php
Normal file
33
extend/Yzh/Model/Dataservice/GetDailyOrderFileV2Response.php
Normal file
@@ -0,0 +1,33 @@
|
||||
<?php
|
||||
|
||||
namespace Yzh\Model\Dataservice;
|
||||
|
||||
use Yzh\Model\BaseResponse;
|
||||
use Yzh\Model\ResponseInterface;
|
||||
|
||||
/**
|
||||
* 查询日订单文件(支付和退款订单)返回
|
||||
* Class GetDailyOrderFileV2Response
|
||||
*/
|
||||
class GetDailyOrderFileV2Response extends BaseResponse implements ResponseInterface
|
||||
{
|
||||
/**
|
||||
* 获取数据对象
|
||||
* @return GetDailyOrderFileV2ResponseData
|
||||
*/
|
||||
public function getData()
|
||||
{
|
||||
return $this->data;
|
||||
}
|
||||
|
||||
/**
|
||||
* 设置数据对象
|
||||
* @param array $data
|
||||
* @return self
|
||||
*/
|
||||
public function setData($data)
|
||||
{
|
||||
$this->data = new GetDailyOrderFileV2ResponseData($data);
|
||||
return $this;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,37 @@
|
||||
<?php
|
||||
|
||||
namespace Yzh\Model\Dataservice;
|
||||
|
||||
use Yzh\Model\BaseModel;
|
||||
use Yzh\Model\ResponseDataInterface;
|
||||
|
||||
/**
|
||||
* 查询日订单文件(支付和退款订单)返回
|
||||
* Class GetDailyOrderFileV2ResponseData
|
||||
*/
|
||||
class GetDailyOrderFileV2ResponseData extends BaseModel implements ResponseDataInterface
|
||||
{
|
||||
/**
|
||||
* 下载地址
|
||||
* @var string
|
||||
*/
|
||||
protected $url;
|
||||
|
||||
/**
|
||||
* 下载地址
|
||||
* @var string $url
|
||||
*/
|
||||
public function setUrl($url)
|
||||
{
|
||||
$this->url = $url;
|
||||
}
|
||||
|
||||
/**
|
||||
* 下载地址
|
||||
* @return string
|
||||
*/
|
||||
public function getUrl()
|
||||
{
|
||||
return $this->url;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,27 @@
|
||||
<?php
|
||||
|
||||
namespace Yzh\Model\Dataservice;
|
||||
|
||||
use Yzh\Model\BaseRequest;
|
||||
|
||||
/**
|
||||
* 查询余额日账单数据请求
|
||||
* Class ListBalanceDailyStatementRequest
|
||||
*/
|
||||
class ListBalanceDailyStatementRequest extends BaseRequest
|
||||
{
|
||||
/**
|
||||
* 账单查询日期 格式:yyyy-MM-dd
|
||||
* @var string
|
||||
*/
|
||||
public $statement_date;
|
||||
|
||||
public function __construct($params = array())
|
||||
{
|
||||
foreach (array_keys(get_object_vars($this)) as $property) {
|
||||
if (isset($params[$property])) {
|
||||
$this->{$property} = $params[$property];
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,33 @@
|
||||
<?php
|
||||
|
||||
namespace Yzh\Model\Dataservice;
|
||||
|
||||
use Yzh\Model\BaseResponse;
|
||||
use Yzh\Model\ResponseInterface;
|
||||
|
||||
/**
|
||||
* 查询余额日账单数据返回
|
||||
* Class ListBalanceDailyStatementResponse
|
||||
*/
|
||||
class ListBalanceDailyStatementResponse extends BaseResponse implements ResponseInterface
|
||||
{
|
||||
/**
|
||||
* 获取数据对象
|
||||
* @return ListBalanceDailyStatementResponseData
|
||||
*/
|
||||
public function getData()
|
||||
{
|
||||
return $this->data;
|
||||
}
|
||||
|
||||
/**
|
||||
* 设置数据对象
|
||||
* @param array $data
|
||||
* @return self
|
||||
*/
|
||||
public function setData($data)
|
||||
{
|
||||
$this->data = new ListBalanceDailyStatementResponseData($data);
|
||||
return $this;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,39 @@
|
||||
<?php
|
||||
|
||||
namespace Yzh\Model\Dataservice;
|
||||
|
||||
use Yzh\Model\BaseModel;
|
||||
use Yzh\Model\ResponseDataInterface;
|
||||
|
||||
/**
|
||||
* 查询余额日账单数据返回
|
||||
* Class ListBalanceDailyStatementResponseData
|
||||
*/
|
||||
class ListBalanceDailyStatementResponseData extends BaseModel implements ResponseDataInterface
|
||||
{
|
||||
/**
|
||||
* 条目信息
|
||||
* @var StatementDetail[]
|
||||
*/
|
||||
protected $list;
|
||||
|
||||
/**
|
||||
* @var array $items
|
||||
*/
|
||||
public function setList($items)
|
||||
{
|
||||
$this->list = array();
|
||||
foreach ($items as $k => $v) {
|
||||
array_push($this->list, new StatementDetail($v));
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* 条目信息
|
||||
* @return StatementDetail[]
|
||||
*/
|
||||
public function getList()
|
||||
{
|
||||
return $this->list;
|
||||
}
|
||||
}
|
||||
42
extend/Yzh/Model/Dataservice/ListDailyBillRequest.php
Normal file
42
extend/Yzh/Model/Dataservice/ListDailyBillRequest.php
Normal file
@@ -0,0 +1,42 @@
|
||||
<?php
|
||||
|
||||
namespace Yzh\Model\Dataservice;
|
||||
|
||||
use Yzh\Model\BaseRequest;
|
||||
|
||||
/**
|
||||
* 查询日流水数据请求
|
||||
* Class ListDailyBillRequest
|
||||
*/
|
||||
class ListDailyBillRequest extends BaseRequest
|
||||
{
|
||||
/**
|
||||
* 流水查询日期
|
||||
* @var string
|
||||
*/
|
||||
public $bill_date;
|
||||
/**
|
||||
* 偏移量
|
||||
* @var int32
|
||||
*/
|
||||
public $offset;
|
||||
/**
|
||||
* 长度
|
||||
* @var int32
|
||||
*/
|
||||
public $length;
|
||||
/**
|
||||
* 如果为 encryption,则对返回的 data 进行加密
|
||||
* @var string
|
||||
*/
|
||||
public $data_type;
|
||||
|
||||
public function __construct($params = array())
|
||||
{
|
||||
foreach (array_keys(get_object_vars($this)) as $property) {
|
||||
if (isset($params[$property])) {
|
||||
$this->{$property} = $params[$property];
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
33
extend/Yzh/Model/Dataservice/ListDailyBillResponse.php
Normal file
33
extend/Yzh/Model/Dataservice/ListDailyBillResponse.php
Normal file
@@ -0,0 +1,33 @@
|
||||
<?php
|
||||
|
||||
namespace Yzh\Model\Dataservice;
|
||||
|
||||
use Yzh\Model\BaseResponse;
|
||||
use Yzh\Model\ResponseInterface;
|
||||
|
||||
/**
|
||||
* 查询日流水数据返回
|
||||
* Class ListDailyBillResponse
|
||||
*/
|
||||
class ListDailyBillResponse extends BaseResponse implements ResponseInterface
|
||||
{
|
||||
/**
|
||||
* 获取数据对象
|
||||
* @return ListDailyBillResponseData
|
||||
*/
|
||||
public function getData()
|
||||
{
|
||||
return $this->data;
|
||||
}
|
||||
|
||||
/**
|
||||
* 设置数据对象
|
||||
* @param array $data
|
||||
* @return self
|
||||
*/
|
||||
public function setData($data)
|
||||
{
|
||||
$this->data = new ListDailyBillResponseData($data);
|
||||
return $this;
|
||||
}
|
||||
}
|
||||
62
extend/Yzh/Model/Dataservice/ListDailyBillResponseData.php
Normal file
62
extend/Yzh/Model/Dataservice/ListDailyBillResponseData.php
Normal file
@@ -0,0 +1,62 @@
|
||||
<?php
|
||||
|
||||
namespace Yzh\Model\Dataservice;
|
||||
|
||||
use Yzh\Model\BaseModel;
|
||||
use Yzh\Model\ResponseDataInterface;
|
||||
|
||||
/**
|
||||
* 查询日流水数据返回
|
||||
* Class ListDailyBillResponseData
|
||||
*/
|
||||
class ListDailyBillResponseData extends BaseModel implements ResponseDataInterface
|
||||
{
|
||||
/**
|
||||
* 总条数
|
||||
* @var int32
|
||||
*/
|
||||
protected $total_num;
|
||||
/**
|
||||
* 条目信息
|
||||
* @var DealerBillInfo[]
|
||||
*/
|
||||
protected $list;
|
||||
|
||||
/**
|
||||
* 总条数
|
||||
* @var int32 $total_num
|
||||
*/
|
||||
public function setTotalNum($total_num)
|
||||
{
|
||||
$this->total_num = $total_num;
|
||||
}
|
||||
|
||||
/**
|
||||
* 总条数
|
||||
* @return int32
|
||||
*/
|
||||
public function getTotalNum()
|
||||
{
|
||||
return $this->total_num;
|
||||
}
|
||||
|
||||
/**
|
||||
* @var array $items
|
||||
*/
|
||||
public function setList($items)
|
||||
{
|
||||
$this->list = array();
|
||||
foreach ($items as $k => $v) {
|
||||
array_push($this->list, new DealerBillInfo($v));
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* 条目信息
|
||||
* @return DealerBillInfo[]
|
||||
*/
|
||||
public function getList()
|
||||
{
|
||||
return $this->list;
|
||||
}
|
||||
}
|
||||
47
extend/Yzh/Model/Dataservice/ListDailyOrderRequest.php
Normal file
47
extend/Yzh/Model/Dataservice/ListDailyOrderRequest.php
Normal file
@@ -0,0 +1,47 @@
|
||||
<?php
|
||||
|
||||
namespace Yzh\Model\Dataservice;
|
||||
|
||||
use Yzh\Model\BaseRequest;
|
||||
|
||||
/**
|
||||
* 查询日订单数据请求
|
||||
* Class ListDailyOrderRequest
|
||||
*/
|
||||
class ListDailyOrderRequest extends BaseRequest
|
||||
{
|
||||
/**
|
||||
* 订单查询日期, 格式:yyyy-MM-dd格式:yyyy-MM-dd
|
||||
* @var string
|
||||
*/
|
||||
public $order_date;
|
||||
/**
|
||||
* 偏移量
|
||||
* @var int32
|
||||
*/
|
||||
public $offset;
|
||||
/**
|
||||
* 长度
|
||||
* @var int32
|
||||
*/
|
||||
public $length;
|
||||
/**
|
||||
* 支付路径名,银行卡(默认)、支付宝、微信
|
||||
* @var string
|
||||
*/
|
||||
public $channel;
|
||||
/**
|
||||
* 如果为 encryption,则对返回的 data 进行加密
|
||||
* @var string
|
||||
*/
|
||||
public $data_type;
|
||||
|
||||
public function __construct($params = array())
|
||||
{
|
||||
foreach (array_keys(get_object_vars($this)) as $property) {
|
||||
if (isset($params[$property])) {
|
||||
$this->{$property} = $params[$property];
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
33
extend/Yzh/Model/Dataservice/ListDailyOrderResponse.php
Normal file
33
extend/Yzh/Model/Dataservice/ListDailyOrderResponse.php
Normal file
@@ -0,0 +1,33 @@
|
||||
<?php
|
||||
|
||||
namespace Yzh\Model\Dataservice;
|
||||
|
||||
use Yzh\Model\BaseResponse;
|
||||
use Yzh\Model\ResponseInterface;
|
||||
|
||||
/**
|
||||
* 查询日订单数据返回
|
||||
* Class ListDailyOrderResponse
|
||||
*/
|
||||
class ListDailyOrderResponse extends BaseResponse implements ResponseInterface
|
||||
{
|
||||
/**
|
||||
* 获取数据对象
|
||||
* @return ListDailyOrderResponseData
|
||||
*/
|
||||
public function getData()
|
||||
{
|
||||
return $this->data;
|
||||
}
|
||||
|
||||
/**
|
||||
* 设置数据对象
|
||||
* @param array $data
|
||||
* @return self
|
||||
*/
|
||||
public function setData($data)
|
||||
{
|
||||
$this->data = new ListDailyOrderResponseData($data);
|
||||
return $this;
|
||||
}
|
||||
}
|
||||
62
extend/Yzh/Model/Dataservice/ListDailyOrderResponseData.php
Normal file
62
extend/Yzh/Model/Dataservice/ListDailyOrderResponseData.php
Normal file
@@ -0,0 +1,62 @@
|
||||
<?php
|
||||
|
||||
namespace Yzh\Model\Dataservice;
|
||||
|
||||
use Yzh\Model\BaseModel;
|
||||
use Yzh\Model\ResponseDataInterface;
|
||||
|
||||
/**
|
||||
* 查询日订单数据返回
|
||||
* Class ListDailyOrderResponseData
|
||||
*/
|
||||
class ListDailyOrderResponseData extends BaseModel implements ResponseDataInterface
|
||||
{
|
||||
/**
|
||||
* 总数目
|
||||
* @var int32
|
||||
*/
|
||||
protected $total_num;
|
||||
/**
|
||||
* 条目信息
|
||||
* @var DealerOrderInfo[]
|
||||
*/
|
||||
protected $list;
|
||||
|
||||
/**
|
||||
* 总数目
|
||||
* @var int32 $total_num
|
||||
*/
|
||||
public function setTotalNum($total_num)
|
||||
{
|
||||
$this->total_num = $total_num;
|
||||
}
|
||||
|
||||
/**
|
||||
* 总数目
|
||||
* @return int32
|
||||
*/
|
||||
public function getTotalNum()
|
||||
{
|
||||
return $this->total_num;
|
||||
}
|
||||
|
||||
/**
|
||||
* @var array $items
|
||||
*/
|
||||
public function setList($items)
|
||||
{
|
||||
$this->list = array();
|
||||
foreach ($items as $k => $v) {
|
||||
array_push($this->list, new DealerOrderInfo($v));
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* 条目信息
|
||||
* @return DealerOrderInfo[]
|
||||
*/
|
||||
public function getList()
|
||||
{
|
||||
return $this->list;
|
||||
}
|
||||
}
|
||||
105
extend/Yzh/Model/Dataservice/ListDailyOrderSummary.php
Normal file
105
extend/Yzh/Model/Dataservice/ListDailyOrderSummary.php
Normal file
@@ -0,0 +1,105 @@
|
||||
<?php
|
||||
|
||||
namespace Yzh\Model\Dataservice;
|
||||
|
||||
use Yzh\Model\BaseModel;
|
||||
|
||||
/**
|
||||
* 日订单汇总数据详情
|
||||
* Class ListDailyOrderSummary
|
||||
*/
|
||||
class ListDailyOrderSummary extends BaseModel
|
||||
{
|
||||
/**
|
||||
* 订单查询日期,格式:yyyy-MM-dd
|
||||
* @var string
|
||||
*/
|
||||
protected $date;
|
||||
/**
|
||||
* 成功订单汇总
|
||||
* @var DailyOrderSummary
|
||||
*/
|
||||
protected $success;
|
||||
/**
|
||||
* 处理中订单汇总
|
||||
* @var DailyOrderSummary
|
||||
*/
|
||||
protected $processing;
|
||||
/**
|
||||
* 失败订单汇总
|
||||
* @var DailyOrderSummary
|
||||
*/
|
||||
protected $failed;
|
||||
|
||||
/**
|
||||
* 订单查询日期,格式:yyyy-MM-dd
|
||||
* @var string $date
|
||||
*/
|
||||
public function setDate($date)
|
||||
{
|
||||
$this->date = $date;
|
||||
}
|
||||
|
||||
/**
|
||||
* 订单查询日期,格式:yyyy-MM-dd
|
||||
* @return string
|
||||
*/
|
||||
public function getDate()
|
||||
{
|
||||
return $this->date;
|
||||
}
|
||||
|
||||
/**
|
||||
* 成功订单汇总
|
||||
* @var DailyOrderSummary $success
|
||||
*/
|
||||
public function setSuccess($success)
|
||||
{
|
||||
$this->success = $success;
|
||||
}
|
||||
|
||||
/**
|
||||
* 成功订单汇总
|
||||
* @return DailyOrderSummary
|
||||
*/
|
||||
public function getSuccess()
|
||||
{
|
||||
return $this->success;
|
||||
}
|
||||
|
||||
/**
|
||||
* 处理中订单汇总
|
||||
* @var DailyOrderSummary $processing
|
||||
*/
|
||||
public function setProcessing($processing)
|
||||
{
|
||||
$this->processing = $processing;
|
||||
}
|
||||
|
||||
/**
|
||||
* 处理中订单汇总
|
||||
* @return DailyOrderSummary
|
||||
*/
|
||||
public function getProcessing()
|
||||
{
|
||||
return $this->processing;
|
||||
}
|
||||
|
||||
/**
|
||||
* 失败订单汇总
|
||||
* @var DailyOrderSummary $failed
|
||||
*/
|
||||
public function setFailed($failed)
|
||||
{
|
||||
$this->failed = $failed;
|
||||
}
|
||||
|
||||
/**
|
||||
* 失败订单汇总
|
||||
* @return DailyOrderSummary
|
||||
*/
|
||||
public function getFailed()
|
||||
{
|
||||
return $this->failed;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,52 @@
|
||||
<?php
|
||||
|
||||
namespace Yzh\Model\Dataservice;
|
||||
|
||||
use Yzh\Model\BaseRequest;
|
||||
|
||||
/**
|
||||
* 查询日订单汇总数据请求
|
||||
* Class ListDailyOrderSummaryRequest
|
||||
*/
|
||||
class ListDailyOrderSummaryRequest extends BaseRequest
|
||||
{
|
||||
/**
|
||||
* 综合服务主体 ID
|
||||
* @var string
|
||||
*/
|
||||
public $broker_id;
|
||||
/**
|
||||
* 平台企业 ID
|
||||
* @var string
|
||||
*/
|
||||
public $dealer_id;
|
||||
/**
|
||||
* 支付路径,银行卡、支付宝、微信
|
||||
* @var string
|
||||
*/
|
||||
public $channel;
|
||||
/**
|
||||
* 订单查询开始日期,格式:yyyy-MM-dd
|
||||
* @var string
|
||||
*/
|
||||
public $begin_at;
|
||||
/**
|
||||
* 订单查询结束日期,格式:yyyy-MM-dd
|
||||
* @var string
|
||||
*/
|
||||
public $end_at;
|
||||
/**
|
||||
* 筛选类型,apply:按订单创建时间汇总 complete:按订单完成时间汇总
|
||||
* @var string
|
||||
*/
|
||||
public $filter_type;
|
||||
|
||||
public function __construct($params = array())
|
||||
{
|
||||
foreach (array_keys(get_object_vars($this)) as $property) {
|
||||
if (isset($params[$property])) {
|
||||
$this->{$property} = $params[$property];
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,33 @@
|
||||
<?php
|
||||
|
||||
namespace Yzh\Model\Dataservice;
|
||||
|
||||
use Yzh\Model\BaseResponse;
|
||||
use Yzh\Model\ResponseInterface;
|
||||
|
||||
/**
|
||||
* 查询日订单汇总数据返回
|
||||
* Class ListDailyOrderSummaryResponse
|
||||
*/
|
||||
class ListDailyOrderSummaryResponse extends BaseResponse implements ResponseInterface
|
||||
{
|
||||
/**
|
||||
* 获取数据对象
|
||||
* @return ListDailyOrderSummaryResponseData
|
||||
*/
|
||||
public function getData()
|
||||
{
|
||||
return $this->data;
|
||||
}
|
||||
|
||||
/**
|
||||
* 设置数据对象
|
||||
* @param array $data
|
||||
* @return self
|
||||
*/
|
||||
public function setData($data)
|
||||
{
|
||||
$this->data = new ListDailyOrderSummaryResponseData($data);
|
||||
return $this;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,39 @@
|
||||
<?php
|
||||
|
||||
namespace Yzh\Model\Dataservice;
|
||||
|
||||
use Yzh\Model\BaseModel;
|
||||
use Yzh\Model\ResponseDataInterface;
|
||||
|
||||
/**
|
||||
* 查询日订单汇总数据返回
|
||||
* Class ListDailyOrderSummaryResponseData
|
||||
*/
|
||||
class ListDailyOrderSummaryResponseData extends BaseModel implements ResponseDataInterface
|
||||
{
|
||||
/**
|
||||
* 汇总数据列表
|
||||
* @var ListDailyOrderSummary[]
|
||||
*/
|
||||
protected $summary_list;
|
||||
|
||||
/**
|
||||
* @var array $items
|
||||
*/
|
||||
public function setSummaryList($items)
|
||||
{
|
||||
$this->summary_list = array();
|
||||
foreach ($items as $k => $v) {
|
||||
array_push($this->summary_list, new ListDailyOrderSummary($v));
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* 汇总数据列表
|
||||
* @return ListDailyOrderSummary[]
|
||||
*/
|
||||
public function getSummaryList()
|
||||
{
|
||||
return $this->summary_list;
|
||||
}
|
||||
}
|
||||
47
extend/Yzh/Model/Dataservice/ListDailyOrderV2Request.php
Normal file
47
extend/Yzh/Model/Dataservice/ListDailyOrderV2Request.php
Normal file
@@ -0,0 +1,47 @@
|
||||
<?php
|
||||
|
||||
namespace Yzh\Model\Dataservice;
|
||||
|
||||
use Yzh\Model\BaseRequest;
|
||||
|
||||
/**
|
||||
* 查询日订单数据(支付和退款订单)请求
|
||||
* Class ListDailyOrderV2Request
|
||||
*/
|
||||
class ListDailyOrderV2Request extends BaseRequest
|
||||
{
|
||||
/**
|
||||
* 订单查询日期, yyyy-MM-dd 格式
|
||||
* @var string
|
||||
*/
|
||||
public $order_date;
|
||||
/**
|
||||
* 偏移量
|
||||
* @var int32
|
||||
*/
|
||||
public $offset;
|
||||
/**
|
||||
* 每页返回条数
|
||||
* @var int32
|
||||
*/
|
||||
public $length;
|
||||
/**
|
||||
* 支付路径名,bankpay:银行卡 alipay:支付宝 wxpay:微信
|
||||
* @var string
|
||||
*/
|
||||
public $channel;
|
||||
/**
|
||||
* 当且仅当参数值为 encryption 时,对返回的 data 进行加密
|
||||
* @var string
|
||||
*/
|
||||
public $data_type;
|
||||
|
||||
public function __construct($params = array())
|
||||
{
|
||||
foreach (array_keys(get_object_vars($this)) as $property) {
|
||||
if (isset($params[$property])) {
|
||||
$this->{$property} = $params[$property];
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
33
extend/Yzh/Model/Dataservice/ListDailyOrderV2Response.php
Normal file
33
extend/Yzh/Model/Dataservice/ListDailyOrderV2Response.php
Normal file
@@ -0,0 +1,33 @@
|
||||
<?php
|
||||
|
||||
namespace Yzh\Model\Dataservice;
|
||||
|
||||
use Yzh\Model\BaseResponse;
|
||||
use Yzh\Model\ResponseInterface;
|
||||
|
||||
/**
|
||||
* 查询日订单数据(支付和退款订单)返回
|
||||
* Class ListDailyOrderV2Response
|
||||
*/
|
||||
class ListDailyOrderV2Response extends BaseResponse implements ResponseInterface
|
||||
{
|
||||
/**
|
||||
* 获取数据对象
|
||||
* @return ListDailyOrderV2ResponseData
|
||||
*/
|
||||
public function getData()
|
||||
{
|
||||
return $this->data;
|
||||
}
|
||||
|
||||
/**
|
||||
* 设置数据对象
|
||||
* @param array $data
|
||||
* @return self
|
||||
*/
|
||||
public function setData($data)
|
||||
{
|
||||
$this->data = new ListDailyOrderV2ResponseData($data);
|
||||
return $this;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,62 @@
|
||||
<?php
|
||||
|
||||
namespace Yzh\Model\Dataservice;
|
||||
|
||||
use Yzh\Model\BaseModel;
|
||||
use Yzh\Model\ResponseDataInterface;
|
||||
|
||||
/**
|
||||
* 查询日订单数据(支付和退款订单)返回
|
||||
* Class ListDailyOrderV2ResponseData
|
||||
*/
|
||||
class ListDailyOrderV2ResponseData extends BaseModel implements ResponseDataInterface
|
||||
{
|
||||
/**
|
||||
* 总条数
|
||||
* @var int32
|
||||
*/
|
||||
protected $total_num;
|
||||
/**
|
||||
* 条目明细
|
||||
* @var DealerOrderInfoV2[]
|
||||
*/
|
||||
protected $list;
|
||||
|
||||
/**
|
||||
* 总条数
|
||||
* @var int32 $total_num
|
||||
*/
|
||||
public function setTotalNum($total_num)
|
||||
{
|
||||
$this->total_num = $total_num;
|
||||
}
|
||||
|
||||
/**
|
||||
* 总条数
|
||||
* @return int32
|
||||
*/
|
||||
public function getTotalNum()
|
||||
{
|
||||
return $this->total_num;
|
||||
}
|
||||
|
||||
/**
|
||||
* @var array $items
|
||||
*/
|
||||
public function setList($items)
|
||||
{
|
||||
$this->list = array();
|
||||
foreach ($items as $k => $v) {
|
||||
array_push($this->list, new DealerOrderInfoV2($v));
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* 条目明细
|
||||
* @return DealerOrderInfoV2[]
|
||||
*/
|
||||
public function getList()
|
||||
{
|
||||
return $this->list;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,32 @@
|
||||
<?php
|
||||
|
||||
namespace Yzh\Model\Dataservice;
|
||||
|
||||
use Yzh\Model\BaseRequest;
|
||||
|
||||
/**
|
||||
* 平台企业预付业务服务费记录请求
|
||||
* Class ListDealerRechargeRecordV2Request
|
||||
*/
|
||||
class ListDealerRechargeRecordV2Request extends BaseRequest
|
||||
{
|
||||
/**
|
||||
* 开始时间,格式:yyyy-MM-dd
|
||||
* @var string
|
||||
*/
|
||||
public $begin_at;
|
||||
/**
|
||||
* 结束时间,格式:yyyy-MM-dd
|
||||
* @var string
|
||||
*/
|
||||
public $end_at;
|
||||
|
||||
public function __construct($params = array())
|
||||
{
|
||||
foreach (array_keys(get_object_vars($this)) as $property) {
|
||||
if (isset($params[$property])) {
|
||||
$this->{$property} = $params[$property];
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,36 @@
|
||||
<?php
|
||||
|
||||
namespace Yzh\Model\Dataservice;
|
||||
|
||||
use Yzh\Model\BaseResponse;
|
||||
use Yzh\Model\ResponseInterface;
|
||||
|
||||
/**
|
||||
* 平台企业预付业务服务费记录返回
|
||||
* Class ListDealerRechargeRecordV2Response
|
||||
*/
|
||||
class ListDealerRechargeRecordV2Response extends BaseResponse implements ResponseInterface
|
||||
{
|
||||
/**
|
||||
* 获取数据对象
|
||||
* @return RechargeRecordInfo[]
|
||||
*/
|
||||
public function getData()
|
||||
{
|
||||
return $this->data;
|
||||
}
|
||||
|
||||
/**
|
||||
* 设置数据对象
|
||||
* @param array $data
|
||||
* @return self
|
||||
*/
|
||||
public function setData($data)
|
||||
{
|
||||
$this->data = array();
|
||||
foreach ($data as $item) {
|
||||
array_push($this->data, new RechargeRecordInfo($item));
|
||||
}
|
||||
return $this;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,39 @@
|
||||
<?php
|
||||
|
||||
namespace Yzh\Model\Dataservice;
|
||||
|
||||
use Yzh\Model\BaseModel;
|
||||
use Yzh\Model\ResponseDataInterface;
|
||||
|
||||
/**
|
||||
* 平台企业预付业务服务费记录返回
|
||||
* Class ListDealerRechargeRecordV2ResponseData
|
||||
*/
|
||||
class ListDealerRechargeRecordV2ResponseData extends BaseModel implements ResponseDataInterface
|
||||
{
|
||||
/**
|
||||
* 预付业务服务费记录
|
||||
* @var RechargeRecordInfo[]
|
||||
*/
|
||||
protected $data;
|
||||
|
||||
/**
|
||||
* @var array $items
|
||||
*/
|
||||
public function setData($items)
|
||||
{
|
||||
$this->data = array();
|
||||
foreach ($items as $k => $v) {
|
||||
array_push($this->data, new RechargeRecordInfo($v));
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* 预付业务服务费记录
|
||||
* @return RechargeRecordInfo[]
|
||||
*/
|
||||
public function getData()
|
||||
{
|
||||
return $this->data;
|
||||
}
|
||||
}
|
||||
82
extend/Yzh/Model/Dataservice/ListMonthlyOrderSummary.php
Normal file
82
extend/Yzh/Model/Dataservice/ListMonthlyOrderSummary.php
Normal file
@@ -0,0 +1,82 @@
|
||||
<?php
|
||||
|
||||
namespace Yzh\Model\Dataservice;
|
||||
|
||||
use Yzh\Model\BaseModel;
|
||||
|
||||
/**
|
||||
* 月订单汇总数据详情
|
||||
* Class ListMonthlyOrderSummary
|
||||
*/
|
||||
class ListMonthlyOrderSummary extends BaseModel
|
||||
{
|
||||
/**
|
||||
* 成功订单汇总
|
||||
* @var MonthlyOrderSummary
|
||||
*/
|
||||
protected $success;
|
||||
/**
|
||||
* 处理中订单汇总
|
||||
* @var MonthlyOrderSummary
|
||||
*/
|
||||
protected $processing;
|
||||
/**
|
||||
* 失败订单汇总
|
||||
* @var MonthlyOrderSummary
|
||||
*/
|
||||
protected $failed;
|
||||
|
||||
/**
|
||||
* 成功订单汇总
|
||||
* @var MonthlyOrderSummary $success
|
||||
*/
|
||||
public function setSuccess($success)
|
||||
{
|
||||
$this->success = $success;
|
||||
}
|
||||
|
||||
/**
|
||||
* 成功订单汇总
|
||||
* @return MonthlyOrderSummary
|
||||
*/
|
||||
public function getSuccess()
|
||||
{
|
||||
return $this->success;
|
||||
}
|
||||
|
||||
/**
|
||||
* 处理中订单汇总
|
||||
* @var MonthlyOrderSummary $processing
|
||||
*/
|
||||
public function setProcessing($processing)
|
||||
{
|
||||
$this->processing = $processing;
|
||||
}
|
||||
|
||||
/**
|
||||
* 处理中订单汇总
|
||||
* @return MonthlyOrderSummary
|
||||
*/
|
||||
public function getProcessing()
|
||||
{
|
||||
return $this->processing;
|
||||
}
|
||||
|
||||
/**
|
||||
* 失败订单汇总
|
||||
* @var MonthlyOrderSummary $failed
|
||||
*/
|
||||
public function setFailed($failed)
|
||||
{
|
||||
$this->failed = $failed;
|
||||
}
|
||||
|
||||
/**
|
||||
* 失败订单汇总
|
||||
* @return MonthlyOrderSummary
|
||||
*/
|
||||
public function getFailed()
|
||||
{
|
||||
return $this->failed;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,47 @@
|
||||
<?php
|
||||
|
||||
namespace Yzh\Model\Dataservice;
|
||||
|
||||
use Yzh\Model\BaseRequest;
|
||||
|
||||
/**
|
||||
* 查询月订单汇总数据请求
|
||||
* Class ListMonthlyOrderSummaryRequest
|
||||
*/
|
||||
class ListMonthlyOrderSummaryRequest extends BaseRequest
|
||||
{
|
||||
/**
|
||||
* 综合服务主体 ID
|
||||
* @var string
|
||||
*/
|
||||
public $broker_id;
|
||||
/**
|
||||
* 平台企业 ID
|
||||
* @var string
|
||||
*/
|
||||
public $dealer_id;
|
||||
/**
|
||||
* 支付路径,银行卡、支付宝、微信
|
||||
* @var string
|
||||
*/
|
||||
public $channel;
|
||||
/**
|
||||
* 汇总月份,格式:yyyy-MM
|
||||
* @var string
|
||||
*/
|
||||
public $month;
|
||||
/**
|
||||
* 筛选类型,apply:按订单创建时间汇总 complete:按订单完成时间汇总
|
||||
* @var string
|
||||
*/
|
||||
public $filter_type;
|
||||
|
||||
public function __construct($params = array())
|
||||
{
|
||||
foreach (array_keys(get_object_vars($this)) as $property) {
|
||||
if (isset($params[$property])) {
|
||||
$this->{$property} = $params[$property];
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,33 @@
|
||||
<?php
|
||||
|
||||
namespace Yzh\Model\Dataservice;
|
||||
|
||||
use Yzh\Model\BaseResponse;
|
||||
use Yzh\Model\ResponseInterface;
|
||||
|
||||
/**
|
||||
* 查询月订单汇总数据返回
|
||||
* Class ListMonthlyOrderSummaryResponse
|
||||
*/
|
||||
class ListMonthlyOrderSummaryResponse extends BaseResponse implements ResponseInterface
|
||||
{
|
||||
/**
|
||||
* 获取数据对象
|
||||
* @return ListMonthlyOrderSummaryResponseData
|
||||
*/
|
||||
public function getData()
|
||||
{
|
||||
return $this->data;
|
||||
}
|
||||
|
||||
/**
|
||||
* 设置数据对象
|
||||
* @param array $data
|
||||
* @return self
|
||||
*/
|
||||
public function setData($data)
|
||||
{
|
||||
$this->data = new ListMonthlyOrderSummaryResponseData($data);
|
||||
return $this;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,37 @@
|
||||
<?php
|
||||
|
||||
namespace Yzh\Model\Dataservice;
|
||||
|
||||
use Yzh\Model\BaseModel;
|
||||
use Yzh\Model\ResponseDataInterface;
|
||||
|
||||
/**
|
||||
* 查询月订单汇总数据返回
|
||||
* Class ListMonthlyOrderSummaryResponseData
|
||||
*/
|
||||
class ListMonthlyOrderSummaryResponseData extends BaseModel implements ResponseDataInterface
|
||||
{
|
||||
/**
|
||||
* 汇总数据列表
|
||||
* @var ListMonthlyOrderSummary
|
||||
*/
|
||||
protected $summary;
|
||||
|
||||
/**
|
||||
* 汇总数据列表
|
||||
* @var ListMonthlyOrderSummary $summary
|
||||
*/
|
||||
public function setSummary($summary)
|
||||
{
|
||||
$this->summary = $summary;
|
||||
}
|
||||
|
||||
/**
|
||||
* 汇总数据列表
|
||||
* @return ListMonthlyOrderSummary
|
||||
*/
|
||||
public function getSummary()
|
||||
{
|
||||
return $this->summary;
|
||||
}
|
||||
}
|
||||
151
extend/Yzh/Model/Dataservice/MonthlyOrderSummary.php
Normal file
151
extend/Yzh/Model/Dataservice/MonthlyOrderSummary.php
Normal file
@@ -0,0 +1,151 @@
|
||||
<?php
|
||||
|
||||
namespace Yzh\Model\Dataservice;
|
||||
|
||||
use Yzh\Model\BaseModel;
|
||||
|
||||
/**
|
||||
* 月订单汇总详情
|
||||
* Class MonthlyOrderSummary
|
||||
*/
|
||||
class MonthlyOrderSummary extends BaseModel
|
||||
{
|
||||
/**
|
||||
* 订单数量
|
||||
* @var int32
|
||||
*/
|
||||
protected $order_num;
|
||||
/**
|
||||
* 订单金额
|
||||
* @var string
|
||||
*/
|
||||
protected $pay;
|
||||
/**
|
||||
* 加成服务费金额
|
||||
* @var string
|
||||
*/
|
||||
protected $broker_fee;
|
||||
/**
|
||||
* 加成服务费实收金额
|
||||
* @var string
|
||||
*/
|
||||
protected $broker_real_fee;
|
||||
/**
|
||||
* 已抵扣加成服务费金额
|
||||
* @var string
|
||||
*/
|
||||
protected $broker_rebate_fee;
|
||||
/**
|
||||
* 用户加成服务费金额
|
||||
* @var string
|
||||
*/
|
||||
protected $user_fee;
|
||||
|
||||
/**
|
||||
* 订单数量
|
||||
* @var int32 $order_num
|
||||
*/
|
||||
public function setOrderNum($order_num)
|
||||
{
|
||||
$this->order_num = $order_num;
|
||||
}
|
||||
|
||||
/**
|
||||
* 订单数量
|
||||
* @return int32
|
||||
*/
|
||||
public function getOrderNum()
|
||||
{
|
||||
return $this->order_num;
|
||||
}
|
||||
|
||||
/**
|
||||
* 订单金额
|
||||
* @var string $pay
|
||||
*/
|
||||
public function setPay($pay)
|
||||
{
|
||||
$this->pay = $pay;
|
||||
}
|
||||
|
||||
/**
|
||||
* 订单金额
|
||||
* @return string
|
||||
*/
|
||||
public function getPay()
|
||||
{
|
||||
return $this->pay;
|
||||
}
|
||||
|
||||
/**
|
||||
* 加成服务费金额
|
||||
* @var string $broker_fee
|
||||
*/
|
||||
public function setBrokerFee($broker_fee)
|
||||
{
|
||||
$this->broker_fee = $broker_fee;
|
||||
}
|
||||
|
||||
/**
|
||||
* 加成服务费金额
|
||||
* @return string
|
||||
*/
|
||||
public function getBrokerFee()
|
||||
{
|
||||
return $this->broker_fee;
|
||||
}
|
||||
|
||||
/**
|
||||
* 加成服务费实收金额
|
||||
* @var string $broker_real_fee
|
||||
*/
|
||||
public function setBrokerRealFee($broker_real_fee)
|
||||
{
|
||||
$this->broker_real_fee = $broker_real_fee;
|
||||
}
|
||||
|
||||
/**
|
||||
* 加成服务费实收金额
|
||||
* @return string
|
||||
*/
|
||||
public function getBrokerRealFee()
|
||||
{
|
||||
return $this->broker_real_fee;
|
||||
}
|
||||
|
||||
/**
|
||||
* 已抵扣加成服务费金额
|
||||
* @var string $broker_rebate_fee
|
||||
*/
|
||||
public function setBrokerRebateFee($broker_rebate_fee)
|
||||
{
|
||||
$this->broker_rebate_fee = $broker_rebate_fee;
|
||||
}
|
||||
|
||||
/**
|
||||
* 已抵扣加成服务费金额
|
||||
* @return string
|
||||
*/
|
||||
public function getBrokerRebateFee()
|
||||
{
|
||||
return $this->broker_rebate_fee;
|
||||
}
|
||||
|
||||
/**
|
||||
* 用户加成服务费金额
|
||||
* @var string $user_fee
|
||||
*/
|
||||
public function setUserFee($user_fee)
|
||||
{
|
||||
$this->user_fee = $user_fee;
|
||||
}
|
||||
|
||||
/**
|
||||
* 用户加成服务费金额
|
||||
* @return string
|
||||
*/
|
||||
public function getUserFee()
|
||||
{
|
||||
return $this->user_fee;
|
||||
}
|
||||
}
|
||||
220
extend/Yzh/Model/Dataservice/RechargeRecordInfo.php
Normal file
220
extend/Yzh/Model/Dataservice/RechargeRecordInfo.php
Normal file
@@ -0,0 +1,220 @@
|
||||
<?php
|
||||
|
||||
namespace Yzh\Model\Dataservice;
|
||||
|
||||
use Yzh\Model\BaseModel;
|
||||
|
||||
/**
|
||||
* 预付业务服务费记录信息
|
||||
* Class RechargeRecordInfo
|
||||
*/
|
||||
class RechargeRecordInfo extends BaseModel
|
||||
{
|
||||
/**
|
||||
* 平台企业 ID
|
||||
* @var string
|
||||
*/
|
||||
protected $dealer_id;
|
||||
/**
|
||||
* 综合服务主体 ID
|
||||
* @var string
|
||||
*/
|
||||
protected $broker_id;
|
||||
/**
|
||||
* 预付业务服务费记录 ID
|
||||
* @var int64
|
||||
*/
|
||||
protected $recharge_id;
|
||||
/**
|
||||
* 预付业务服务费
|
||||
* @var float64
|
||||
*/
|
||||
protected $amount;
|
||||
/**
|
||||
* 实际到账金额
|
||||
* @var float64
|
||||
*/
|
||||
protected $actual_amount;
|
||||
/**
|
||||
* 创建时间
|
||||
* @var string
|
||||
*/
|
||||
protected $created_at;
|
||||
/**
|
||||
* 资金用途
|
||||
* @var string
|
||||
*/
|
||||
protected $recharge_channel;
|
||||
/**
|
||||
* 预付业务服务费备注
|
||||
* @var string
|
||||
*/
|
||||
protected $remark;
|
||||
/**
|
||||
* 平台企业付款银行账号
|
||||
* @var string
|
||||
*/
|
||||
protected $recharge_account_no;
|
||||
|
||||
/**
|
||||
* 平台企业 ID
|
||||
* @var string $dealer_id
|
||||
*/
|
||||
public function setDealerId($dealer_id)
|
||||
{
|
||||
$this->dealer_id = $dealer_id;
|
||||
}
|
||||
|
||||
/**
|
||||
* 平台企业 ID
|
||||
* @return string
|
||||
*/
|
||||
public function getDealerId()
|
||||
{
|
||||
return $this->dealer_id;
|
||||
}
|
||||
|
||||
/**
|
||||
* 综合服务主体 ID
|
||||
* @var string $broker_id
|
||||
*/
|
||||
public function setBrokerId($broker_id)
|
||||
{
|
||||
$this->broker_id = $broker_id;
|
||||
}
|
||||
|
||||
/**
|
||||
* 综合服务主体 ID
|
||||
* @return string
|
||||
*/
|
||||
public function getBrokerId()
|
||||
{
|
||||
return $this->broker_id;
|
||||
}
|
||||
|
||||
/**
|
||||
* 预付业务服务费记录 ID
|
||||
* @var int64 $recharge_id
|
||||
*/
|
||||
public function setRechargeId($recharge_id)
|
||||
{
|
||||
$this->recharge_id = $recharge_id;
|
||||
}
|
||||
|
||||
/**
|
||||
* 预付业务服务费记录 ID
|
||||
* @return int64
|
||||
*/
|
||||
public function getRechargeId()
|
||||
{
|
||||
return $this->recharge_id;
|
||||
}
|
||||
|
||||
/**
|
||||
* 预付业务服务费
|
||||
* @var float64 $amount
|
||||
*/
|
||||
public function setAmount($amount)
|
||||
{
|
||||
$this->amount = $amount;
|
||||
}
|
||||
|
||||
/**
|
||||
* 预付业务服务费
|
||||
* @return float64
|
||||
*/
|
||||
public function getAmount()
|
||||
{
|
||||
return $this->amount;
|
||||
}
|
||||
|
||||
/**
|
||||
* 实际到账金额
|
||||
* @var float64 $actual_amount
|
||||
*/
|
||||
public function setActualAmount($actual_amount)
|
||||
{
|
||||
$this->actual_amount = $actual_amount;
|
||||
}
|
||||
|
||||
/**
|
||||
* 实际到账金额
|
||||
* @return float64
|
||||
*/
|
||||
public function getActualAmount()
|
||||
{
|
||||
return $this->actual_amount;
|
||||
}
|
||||
|
||||
/**
|
||||
* 创建时间
|
||||
* @var string $created_at
|
||||
*/
|
||||
public function setCreatedAt($created_at)
|
||||
{
|
||||
$this->created_at = $created_at;
|
||||
}
|
||||
|
||||
/**
|
||||
* 创建时间
|
||||
* @return string
|
||||
*/
|
||||
public function getCreatedAt()
|
||||
{
|
||||
return $this->created_at;
|
||||
}
|
||||
|
||||
/**
|
||||
* 资金用途
|
||||
* @var string $recharge_channel
|
||||
*/
|
||||
public function setRechargeChannel($recharge_channel)
|
||||
{
|
||||
$this->recharge_channel = $recharge_channel;
|
||||
}
|
||||
|
||||
/**
|
||||
* 资金用途
|
||||
* @return string
|
||||
*/
|
||||
public function getRechargeChannel()
|
||||
{
|
||||
return $this->recharge_channel;
|
||||
}
|
||||
|
||||
/**
|
||||
* 预付业务服务费备注
|
||||
* @var string $remark
|
||||
*/
|
||||
public function setRemark($remark)
|
||||
{
|
||||
$this->remark = $remark;
|
||||
}
|
||||
|
||||
/**
|
||||
* 预付业务服务费备注
|
||||
* @return string
|
||||
*/
|
||||
public function getRemark()
|
||||
{
|
||||
return $this->remark;
|
||||
}
|
||||
|
||||
/**
|
||||
* 平台企业付款银行账号
|
||||
* @var string $recharge_account_no
|
||||
*/
|
||||
public function setRechargeAccountNo($recharge_account_no)
|
||||
{
|
||||
$this->recharge_account_no = $recharge_account_no;
|
||||
}
|
||||
|
||||
/**
|
||||
* 平台企业付款银行账号
|
||||
* @return string
|
||||
*/
|
||||
public function getRechargeAccountNo()
|
||||
{
|
||||
return $this->recharge_account_no;
|
||||
}
|
||||
}
|
||||
404
extend/Yzh/Model/Dataservice/StatementDetail.php
Normal file
404
extend/Yzh/Model/Dataservice/StatementDetail.php
Normal file
@@ -0,0 +1,404 @@
|
||||
<?php
|
||||
|
||||
namespace Yzh\Model\Dataservice;
|
||||
|
||||
use Yzh\Model\BaseModel;
|
||||
|
||||
/**
|
||||
* 余额账单信息详情
|
||||
* Class StatementDetail
|
||||
*/
|
||||
class StatementDetail extends BaseModel
|
||||
{
|
||||
/**
|
||||
* 账单 ID
|
||||
* @var string
|
||||
*/
|
||||
protected $statement_id;
|
||||
/**
|
||||
* 账单日期
|
||||
* @var string
|
||||
*/
|
||||
protected $statement_date;
|
||||
/**
|
||||
* 综合服务主体 ID
|
||||
* @var string
|
||||
*/
|
||||
protected $broker_id;
|
||||
/**
|
||||
* 平台企业 ID
|
||||
* @var string
|
||||
*/
|
||||
protected $dealer_id;
|
||||
/**
|
||||
* 综合服务主体名称
|
||||
* @var string
|
||||
*/
|
||||
protected $broker_product_name;
|
||||
/**
|
||||
* 平台企业名称
|
||||
* @var string
|
||||
*/
|
||||
protected $dealer_product_name;
|
||||
/**
|
||||
* 业务类型
|
||||
* @var string
|
||||
*/
|
||||
protected $biz_type;
|
||||
/**
|
||||
* 账单金额
|
||||
* @var string
|
||||
*/
|
||||
protected $total_money;
|
||||
/**
|
||||
* 订单金额
|
||||
* @var string
|
||||
*/
|
||||
protected $amount;
|
||||
/**
|
||||
* 退汇金额
|
||||
* @var string
|
||||
*/
|
||||
protected $reex_amount;
|
||||
/**
|
||||
* 加成服务费金额
|
||||
* @var string
|
||||
*/
|
||||
protected $fee_amount;
|
||||
/**
|
||||
* 加成服务费抵扣金额
|
||||
* @var string
|
||||
*/
|
||||
protected $deduct_rebate_fee_amount;
|
||||
/**
|
||||
* 冲补金额
|
||||
* @var string
|
||||
*/
|
||||
protected $money_adjust;
|
||||
/**
|
||||
* 账单状态
|
||||
* @var string
|
||||
*/
|
||||
protected $status;
|
||||
/**
|
||||
* 开票状态
|
||||
* @var string
|
||||
*/
|
||||
protected $invoice_status;
|
||||
/**
|
||||
* 项目 ID
|
||||
* @var string
|
||||
*/
|
||||
protected $project_id;
|
||||
/**
|
||||
* 项目名称
|
||||
* @var string
|
||||
*/
|
||||
protected $project_name;
|
||||
|
||||
/**
|
||||
* 账单 ID
|
||||
* @var string $statement_id
|
||||
*/
|
||||
public function setStatementId($statement_id)
|
||||
{
|
||||
$this->statement_id = $statement_id;
|
||||
}
|
||||
|
||||
/**
|
||||
* 账单 ID
|
||||
* @return string
|
||||
*/
|
||||
public function getStatementId()
|
||||
{
|
||||
return $this->statement_id;
|
||||
}
|
||||
|
||||
/**
|
||||
* 账单日期
|
||||
* @var string $statement_date
|
||||
*/
|
||||
public function setStatementDate($statement_date)
|
||||
{
|
||||
$this->statement_date = $statement_date;
|
||||
}
|
||||
|
||||
/**
|
||||
* 账单日期
|
||||
* @return string
|
||||
*/
|
||||
public function getStatementDate()
|
||||
{
|
||||
return $this->statement_date;
|
||||
}
|
||||
|
||||
/**
|
||||
* 综合服务主体 ID
|
||||
* @var string $broker_id
|
||||
*/
|
||||
public function setBrokerId($broker_id)
|
||||
{
|
||||
$this->broker_id = $broker_id;
|
||||
}
|
||||
|
||||
/**
|
||||
* 综合服务主体 ID
|
||||
* @return string
|
||||
*/
|
||||
public function getBrokerId()
|
||||
{
|
||||
return $this->broker_id;
|
||||
}
|
||||
|
||||
/**
|
||||
* 平台企业 ID
|
||||
* @var string $dealer_id
|
||||
*/
|
||||
public function setDealerId($dealer_id)
|
||||
{
|
||||
$this->dealer_id = $dealer_id;
|
||||
}
|
||||
|
||||
/**
|
||||
* 平台企业 ID
|
||||
* @return string
|
||||
*/
|
||||
public function getDealerId()
|
||||
{
|
||||
return $this->dealer_id;
|
||||
}
|
||||
|
||||
/**
|
||||
* 综合服务主体名称
|
||||
* @var string $broker_product_name
|
||||
*/
|
||||
public function setBrokerProductName($broker_product_name)
|
||||
{
|
||||
$this->broker_product_name = $broker_product_name;
|
||||
}
|
||||
|
||||
/**
|
||||
* 综合服务主体名称
|
||||
* @return string
|
||||
*/
|
||||
public function getBrokerProductName()
|
||||
{
|
||||
return $this->broker_product_name;
|
||||
}
|
||||
|
||||
/**
|
||||
* 平台企业名称
|
||||
* @var string $dealer_product_name
|
||||
*/
|
||||
public function setDealerProductName($dealer_product_name)
|
||||
{
|
||||
$this->dealer_product_name = $dealer_product_name;
|
||||
}
|
||||
|
||||
/**
|
||||
* 平台企业名称
|
||||
* @return string
|
||||
*/
|
||||
public function getDealerProductName()
|
||||
{
|
||||
return $this->dealer_product_name;
|
||||
}
|
||||
|
||||
/**
|
||||
* 业务类型
|
||||
* @var string $biz_type
|
||||
*/
|
||||
public function setBizType($biz_type)
|
||||
{
|
||||
$this->biz_type = $biz_type;
|
||||
}
|
||||
|
||||
/**
|
||||
* 业务类型
|
||||
* @return string
|
||||
*/
|
||||
public function getBizType()
|
||||
{
|
||||
return $this->biz_type;
|
||||
}
|
||||
|
||||
/**
|
||||
* 账单金额
|
||||
* @var string $total_money
|
||||
*/
|
||||
public function setTotalMoney($total_money)
|
||||
{
|
||||
$this->total_money = $total_money;
|
||||
}
|
||||
|
||||
/**
|
||||
* 账单金额
|
||||
* @return string
|
||||
*/
|
||||
public function getTotalMoney()
|
||||
{
|
||||
return $this->total_money;
|
||||
}
|
||||
|
||||
/**
|
||||
* 订单金额
|
||||
* @var string $amount
|
||||
*/
|
||||
public function setAmount($amount)
|
||||
{
|
||||
$this->amount = $amount;
|
||||
}
|
||||
|
||||
/**
|
||||
* 订单金额
|
||||
* @return string
|
||||
*/
|
||||
public function getAmount()
|
||||
{
|
||||
return $this->amount;
|
||||
}
|
||||
|
||||
/**
|
||||
* 退汇金额
|
||||
* @var string $reex_amount
|
||||
*/
|
||||
public function setReexAmount($reex_amount)
|
||||
{
|
||||
$this->reex_amount = $reex_amount;
|
||||
}
|
||||
|
||||
/**
|
||||
* 退汇金额
|
||||
* @return string
|
||||
*/
|
||||
public function getReexAmount()
|
||||
{
|
||||
return $this->reex_amount;
|
||||
}
|
||||
|
||||
/**
|
||||
* 加成服务费金额
|
||||
* @var string $fee_amount
|
||||
*/
|
||||
public function setFeeAmount($fee_amount)
|
||||
{
|
||||
$this->fee_amount = $fee_amount;
|
||||
}
|
||||
|
||||
/**
|
||||
* 加成服务费金额
|
||||
* @return string
|
||||
*/
|
||||
public function getFeeAmount()
|
||||
{
|
||||
return $this->fee_amount;
|
||||
}
|
||||
|
||||
/**
|
||||
* 加成服务费抵扣金额
|
||||
* @var string $deduct_rebate_fee_amount
|
||||
*/
|
||||
public function setDeductRebateFeeAmount($deduct_rebate_fee_amount)
|
||||
{
|
||||
$this->deduct_rebate_fee_amount = $deduct_rebate_fee_amount;
|
||||
}
|
||||
|
||||
/**
|
||||
* 加成服务费抵扣金额
|
||||
* @return string
|
||||
*/
|
||||
public function getDeductRebateFeeAmount()
|
||||
{
|
||||
return $this->deduct_rebate_fee_amount;
|
||||
}
|
||||
|
||||
/**
|
||||
* 冲补金额
|
||||
* @var string $money_adjust
|
||||
*/
|
||||
public function setMoneyAdjust($money_adjust)
|
||||
{
|
||||
$this->money_adjust = $money_adjust;
|
||||
}
|
||||
|
||||
/**
|
||||
* 冲补金额
|
||||
* @return string
|
||||
*/
|
||||
public function getMoneyAdjust()
|
||||
{
|
||||
return $this->money_adjust;
|
||||
}
|
||||
|
||||
/**
|
||||
* 账单状态
|
||||
* @var string $status
|
||||
*/
|
||||
public function setStatus($status)
|
||||
{
|
||||
$this->status = $status;
|
||||
}
|
||||
|
||||
/**
|
||||
* 账单状态
|
||||
* @return string
|
||||
*/
|
||||
public function getStatus()
|
||||
{
|
||||
return $this->status;
|
||||
}
|
||||
|
||||
/**
|
||||
* 开票状态
|
||||
* @var string $invoice_status
|
||||
*/
|
||||
public function setInvoiceStatus($invoice_status)
|
||||
{
|
||||
$this->invoice_status = $invoice_status;
|
||||
}
|
||||
|
||||
/**
|
||||
* 开票状态
|
||||
* @return string
|
||||
*/
|
||||
public function getInvoiceStatus()
|
||||
{
|
||||
return $this->invoice_status;
|
||||
}
|
||||
|
||||
/**
|
||||
* 项目 ID
|
||||
* @var string $project_id
|
||||
*/
|
||||
public function setProjectId($project_id)
|
||||
{
|
||||
$this->project_id = $project_id;
|
||||
}
|
||||
|
||||
/**
|
||||
* 项目 ID
|
||||
* @return string
|
||||
*/
|
||||
public function getProjectId()
|
||||
{
|
||||
return $this->project_id;
|
||||
}
|
||||
|
||||
/**
|
||||
* 项目名称
|
||||
* @var string $project_name
|
||||
*/
|
||||
public function setProjectName($project_name)
|
||||
{
|
||||
$this->project_name = $project_name;
|
||||
}
|
||||
|
||||
/**
|
||||
* 项目名称
|
||||
* @return string
|
||||
*/
|
||||
public function getProjectName()
|
||||
{
|
||||
return $this->project_name;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user