云账号SDK更换

This commit is contained in:
2025-09-30 14:06:41 +08:00
parent 4faaea51b8
commit b3f5a5d62d
59 changed files with 8726 additions and 148 deletions

View File

@@ -56,10 +56,15 @@ class DealerOrderInfoV2 extends BaseModel
*/
protected $broker_amount;
/**
* 综合服务主体加成服务费
* 应收综合服务主体加成服务费金额
* @var string
*/
protected $broker_fee;
/**
* 实收综合服务主体加成服务费金额
* @var string
*/
protected $received_broker_fee;
/**
* 支付路径流水号
* @var string
@@ -130,6 +135,21 @@ class DealerOrderInfoV2 extends BaseModel
* @var string
*/
protected $pay_ref;
/**
* 预扣税费总额
* @var string
*/
protected $tax_amount;
/**
* 实缴税费总额
* @var string
*/
protected $received_tax_amount;
/**
* 缴税明细
* @var OrderTaxDetail
*/
protected $tax_detail;
/**
* 综合服务主体 ID
@@ -294,7 +314,7 @@ class DealerOrderInfoV2 extends BaseModel
}
/**
* 综合服务主体加成服务费
* 应收综合服务主体加成服务费金额
* @var string $broker_fee
*/
public function setBrokerFee($broker_fee)
@@ -303,7 +323,7 @@ class DealerOrderInfoV2 extends BaseModel
}
/**
* 综合服务主体加成服务费
* 应收综合服务主体加成服务费金额
* @return string
*/
public function getBrokerFee()
@@ -311,6 +331,24 @@ class DealerOrderInfoV2 extends BaseModel
return $this->broker_fee;
}
/**
* 实收综合服务主体加成服务费金额
* @var string $received_broker_fee
*/
public function setReceivedBrokerFee($received_broker_fee)
{
$this->received_broker_fee = $received_broker_fee;
}
/**
* 实收综合服务主体加成服务费金额
* @return string
*/
public function getReceivedBrokerFee()
{
return $this->received_broker_fee;
}
/**
* 支付路径流水号
* @var string $bill
@@ -562,4 +600,58 @@ class DealerOrderInfoV2 extends BaseModel
{
return $this->pay_ref;
}
/**
* 预扣税费总额
* @var string $tax_amount
*/
public function setTaxAmount($tax_amount)
{
$this->tax_amount = $tax_amount;
}
/**
* 预扣税费总额
* @return string
*/
public function getTaxAmount()
{
return $this->tax_amount;
}
/**
* 实缴税费总额
* @var string $received_tax_amount
*/
public function setReceivedTaxAmount($received_tax_amount)
{
$this->received_tax_amount = $received_tax_amount;
}
/**
* 实缴税费总额
* @return string
*/
public function getReceivedTaxAmount()
{
return $this->received_tax_amount;
}
/**
* 缴税明细
* @var OrderTaxDetail $tax_detail
*/
public function setTaxDetail($tax_detail)
{
$this->tax_detail = $tax_detail;
}
/**
* 缴税明细
* @return OrderTaxDetail
*/
public function getTaxDetail()
{
return $this->tax_detail;
}
}