更新
This commit is contained in:
@@ -70,6 +70,11 @@ class UserExemptedInfoRequest extends BaseRequest
|
||||
* @var string
|
||||
*/
|
||||
public $ref;
|
||||
/**
|
||||
* 证件照片 URL 地址
|
||||
* @var string[]
|
||||
*/
|
||||
public $image_urls;
|
||||
|
||||
public function __construct($params = array())
|
||||
{
|
||||
|
||||
@@ -21,25 +21,145 @@ class DailyOrderSummary extends BaseModel
|
||||
*/
|
||||
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 string
|
||||
*/
|
||||
protected $received_broker_fee;
|
||||
/**
|
||||
* 实收余额账户支出加成服务费金额
|
||||
* @var string
|
||||
*/
|
||||
protected $received_broker_real_fee;
|
||||
/**
|
||||
* 实收加成服务费抵扣金额
|
||||
* @var string
|
||||
*/
|
||||
protected $received_broker_deduct_fee;
|
||||
/**
|
||||
* 实收用户加成服务费金额
|
||||
* @var string
|
||||
*/
|
||||
protected $received_user_fee;
|
||||
/**
|
||||
* 预扣税费总额
|
||||
* @var string
|
||||
*/
|
||||
protected $tax;
|
||||
/**
|
||||
* 实缴税费总额
|
||||
* @var string
|
||||
*/
|
||||
protected $received_tax_amount;
|
||||
/**
|
||||
* 预扣个税
|
||||
* @var string
|
||||
*/
|
||||
protected $personal_tax;
|
||||
/**
|
||||
* 预扣增值税
|
||||
* @var string
|
||||
*/
|
||||
protected $value_added_tax;
|
||||
/**
|
||||
* 预扣附加税费
|
||||
* @var string
|
||||
*/
|
||||
protected $additional_tax;
|
||||
/**
|
||||
* 实缴个税
|
||||
* @var string
|
||||
*/
|
||||
protected $received_personal_tax;
|
||||
/**
|
||||
* 实缴增值税
|
||||
* @var string
|
||||
*/
|
||||
protected $received_value_added_tax;
|
||||
/**
|
||||
* 实缴附加税费
|
||||
* @var string
|
||||
*/
|
||||
protected $received_additional_tax;
|
||||
/**
|
||||
* 用户预扣个税
|
||||
* @var string
|
||||
*/
|
||||
protected $user_personal_tax;
|
||||
/**
|
||||
* 平台企业预扣个税
|
||||
* @var string
|
||||
*/
|
||||
protected $dealer_personal_tax;
|
||||
/**
|
||||
* 用户预扣增值税
|
||||
* @var string
|
||||
*/
|
||||
protected $user_value_added_tax;
|
||||
/**
|
||||
* 平台企业预扣增值税
|
||||
* @var string
|
||||
*/
|
||||
protected $dealer_value_added_tax;
|
||||
/**
|
||||
* 用户预扣附加税费
|
||||
* @var string
|
||||
*/
|
||||
protected $user_additional_tax;
|
||||
/**
|
||||
* 平台企业预扣附加税费
|
||||
* @var string
|
||||
*/
|
||||
protected $dealer_additional_tax;
|
||||
/**
|
||||
* 用户实缴个税
|
||||
* @var string
|
||||
*/
|
||||
protected $user_received_personal_tax;
|
||||
/**
|
||||
* 平台企业实缴个税
|
||||
* @var string
|
||||
*/
|
||||
protected $dealer_received_personal_tax;
|
||||
/**
|
||||
* 用户实缴增值税
|
||||
* @var string
|
||||
*/
|
||||
protected $user_received_value_added_tax;
|
||||
/**
|
||||
* 平台企业实缴增值税
|
||||
* @var string
|
||||
*/
|
||||
protected $dealer_received_value_added_tax;
|
||||
/**
|
||||
* 用户实缴附加税费
|
||||
* @var string
|
||||
*/
|
||||
protected $user_received_additional_tax;
|
||||
/**
|
||||
* 平台企业实缴附加税费
|
||||
* @var string
|
||||
*/
|
||||
protected $dealer_received_additional_tax;
|
||||
|
||||
/**
|
||||
* 订单数量
|
||||
@@ -78,7 +198,7 @@ class DailyOrderSummary extends BaseModel
|
||||
}
|
||||
|
||||
/**
|
||||
* 加成服务费金额
|
||||
* 应收综合服务主体加成服务费金额
|
||||
* @var string $broker_fee
|
||||
*/
|
||||
public function setBrokerFee($broker_fee)
|
||||
@@ -87,7 +207,7 @@ class DailyOrderSummary extends BaseModel
|
||||
}
|
||||
|
||||
/**
|
||||
* 加成服务费金额
|
||||
* 应收综合服务主体加成服务费金额
|
||||
* @return string
|
||||
*/
|
||||
public function getBrokerFee()
|
||||
@@ -96,7 +216,7 @@ class DailyOrderSummary extends BaseModel
|
||||
}
|
||||
|
||||
/**
|
||||
* 加成服务费实收金额
|
||||
* 应收余额账户支出加成服务费金额
|
||||
* @var string $broker_real_fee
|
||||
*/
|
||||
public function setBrokerRealFee($broker_real_fee)
|
||||
@@ -105,7 +225,7 @@ class DailyOrderSummary extends BaseModel
|
||||
}
|
||||
|
||||
/**
|
||||
* 加成服务费实收金额
|
||||
* 应收余额账户支出加成服务费金额
|
||||
* @return string
|
||||
*/
|
||||
public function getBrokerRealFee()
|
||||
@@ -114,7 +234,7 @@ class DailyOrderSummary extends BaseModel
|
||||
}
|
||||
|
||||
/**
|
||||
* 已抵扣加成服务费金额
|
||||
* 应收加成服务费抵扣金额
|
||||
* @var string $broker_rebate_fee
|
||||
*/
|
||||
public function setBrokerRebateFee($broker_rebate_fee)
|
||||
@@ -123,7 +243,7 @@ class DailyOrderSummary extends BaseModel
|
||||
}
|
||||
|
||||
/**
|
||||
* 已抵扣加成服务费金额
|
||||
* 应收加成服务费抵扣金额
|
||||
* @return string
|
||||
*/
|
||||
public function getBrokerRebateFee()
|
||||
@@ -132,7 +252,7 @@ class DailyOrderSummary extends BaseModel
|
||||
}
|
||||
|
||||
/**
|
||||
* 用户加成服务费金额
|
||||
* 应收用户加成服务费金额
|
||||
* @var string $user_fee
|
||||
*/
|
||||
public function setUserFee($user_fee)
|
||||
@@ -141,11 +261,443 @@ class DailyOrderSummary extends BaseModel
|
||||
}
|
||||
|
||||
/**
|
||||
* 用户加成服务费金额
|
||||
* 应收用户加成服务费金额
|
||||
* @return string
|
||||
*/
|
||||
public function getUserFee()
|
||||
{
|
||||
return $this->user_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 $received_broker_real_fee
|
||||
*/
|
||||
public function setReceivedBrokerRealFee($received_broker_real_fee)
|
||||
{
|
||||
$this->received_broker_real_fee = $received_broker_real_fee;
|
||||
}
|
||||
|
||||
/**
|
||||
* 实收余额账户支出加成服务费金额
|
||||
* @return string
|
||||
*/
|
||||
public function getReceivedBrokerRealFee()
|
||||
{
|
||||
return $this->received_broker_real_fee;
|
||||
}
|
||||
|
||||
/**
|
||||
* 实收加成服务费抵扣金额
|
||||
* @var string $received_broker_deduct_fee
|
||||
*/
|
||||
public function setReceivedBrokerDeductFee($received_broker_deduct_fee)
|
||||
{
|
||||
$this->received_broker_deduct_fee = $received_broker_deduct_fee;
|
||||
}
|
||||
|
||||
/**
|
||||
* 实收加成服务费抵扣金额
|
||||
* @return string
|
||||
*/
|
||||
public function getReceivedBrokerDeductFee()
|
||||
{
|
||||
return $this->received_broker_deduct_fee;
|
||||
}
|
||||
|
||||
/**
|
||||
* 实收用户加成服务费金额
|
||||
* @var string $received_user_fee
|
||||
*/
|
||||
public function setReceivedUserFee($received_user_fee)
|
||||
{
|
||||
$this->received_user_fee = $received_user_fee;
|
||||
}
|
||||
|
||||
/**
|
||||
* 实收用户加成服务费金额
|
||||
* @return string
|
||||
*/
|
||||
public function getReceivedUserFee()
|
||||
{
|
||||
return $this->received_user_fee;
|
||||
}
|
||||
|
||||
/**
|
||||
* 预扣税费总额
|
||||
* @var string $tax
|
||||
*/
|
||||
public function setTax($tax)
|
||||
{
|
||||
$this->tax = $tax;
|
||||
}
|
||||
|
||||
/**
|
||||
* 预扣税费总额
|
||||
* @return string
|
||||
*/
|
||||
public function getTax()
|
||||
{
|
||||
return $this->tax;
|
||||
}
|
||||
|
||||
/**
|
||||
* 实缴税费总额
|
||||
* @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 string $personal_tax
|
||||
*/
|
||||
public function setPersonalTax($personal_tax)
|
||||
{
|
||||
$this->personal_tax = $personal_tax;
|
||||
}
|
||||
|
||||
/**
|
||||
* 预扣个税
|
||||
* @return string
|
||||
*/
|
||||
public function getPersonalTax()
|
||||
{
|
||||
return $this->personal_tax;
|
||||
}
|
||||
|
||||
/**
|
||||
* 预扣增值税
|
||||
* @var string $value_added_tax
|
||||
*/
|
||||
public function setValueAddedTax($value_added_tax)
|
||||
{
|
||||
$this->value_added_tax = $value_added_tax;
|
||||
}
|
||||
|
||||
/**
|
||||
* 预扣增值税
|
||||
* @return string
|
||||
*/
|
||||
public function getValueAddedTax()
|
||||
{
|
||||
return $this->value_added_tax;
|
||||
}
|
||||
|
||||
/**
|
||||
* 预扣附加税费
|
||||
* @var string $additional_tax
|
||||
*/
|
||||
public function setAdditionalTax($additional_tax)
|
||||
{
|
||||
$this->additional_tax = $additional_tax;
|
||||
}
|
||||
|
||||
/**
|
||||
* 预扣附加税费
|
||||
* @return string
|
||||
*/
|
||||
public function getAdditionalTax()
|
||||
{
|
||||
return $this->additional_tax;
|
||||
}
|
||||
|
||||
/**
|
||||
* 实缴个税
|
||||
* @var string $received_personal_tax
|
||||
*/
|
||||
public function setReceivedPersonalTax($received_personal_tax)
|
||||
{
|
||||
$this->received_personal_tax = $received_personal_tax;
|
||||
}
|
||||
|
||||
/**
|
||||
* 实缴个税
|
||||
* @return string
|
||||
*/
|
||||
public function getReceivedPersonalTax()
|
||||
{
|
||||
return $this->received_personal_tax;
|
||||
}
|
||||
|
||||
/**
|
||||
* 实缴增值税
|
||||
* @var string $received_value_added_tax
|
||||
*/
|
||||
public function setReceivedValueAddedTax($received_value_added_tax)
|
||||
{
|
||||
$this->received_value_added_tax = $received_value_added_tax;
|
||||
}
|
||||
|
||||
/**
|
||||
* 实缴增值税
|
||||
* @return string
|
||||
*/
|
||||
public function getReceivedValueAddedTax()
|
||||
{
|
||||
return $this->received_value_added_tax;
|
||||
}
|
||||
|
||||
/**
|
||||
* 实缴附加税费
|
||||
* @var string $received_additional_tax
|
||||
*/
|
||||
public function setReceivedAdditionalTax($received_additional_tax)
|
||||
{
|
||||
$this->received_additional_tax = $received_additional_tax;
|
||||
}
|
||||
|
||||
/**
|
||||
* 实缴附加税费
|
||||
* @return string
|
||||
*/
|
||||
public function getReceivedAdditionalTax()
|
||||
{
|
||||
return $this->received_additional_tax;
|
||||
}
|
||||
|
||||
/**
|
||||
* 用户预扣个税
|
||||
* @var string $user_personal_tax
|
||||
*/
|
||||
public function setUserPersonalTax($user_personal_tax)
|
||||
{
|
||||
$this->user_personal_tax = $user_personal_tax;
|
||||
}
|
||||
|
||||
/**
|
||||
* 用户预扣个税
|
||||
* @return string
|
||||
*/
|
||||
public function getUserPersonalTax()
|
||||
{
|
||||
return $this->user_personal_tax;
|
||||
}
|
||||
|
||||
/**
|
||||
* 平台企业预扣个税
|
||||
* @var string $dealer_personal_tax
|
||||
*/
|
||||
public function setDealerPersonalTax($dealer_personal_tax)
|
||||
{
|
||||
$this->dealer_personal_tax = $dealer_personal_tax;
|
||||
}
|
||||
|
||||
/**
|
||||
* 平台企业预扣个税
|
||||
* @return string
|
||||
*/
|
||||
public function getDealerPersonalTax()
|
||||
{
|
||||
return $this->dealer_personal_tax;
|
||||
}
|
||||
|
||||
/**
|
||||
* 用户预扣增值税
|
||||
* @var string $user_value_added_tax
|
||||
*/
|
||||
public function setUserValueAddedTax($user_value_added_tax)
|
||||
{
|
||||
$this->user_value_added_tax = $user_value_added_tax;
|
||||
}
|
||||
|
||||
/**
|
||||
* 用户预扣增值税
|
||||
* @return string
|
||||
*/
|
||||
public function getUserValueAddedTax()
|
||||
{
|
||||
return $this->user_value_added_tax;
|
||||
}
|
||||
|
||||
/**
|
||||
* 平台企业预扣增值税
|
||||
* @var string $dealer_value_added_tax
|
||||
*/
|
||||
public function setDealerValueAddedTax($dealer_value_added_tax)
|
||||
{
|
||||
$this->dealer_value_added_tax = $dealer_value_added_tax;
|
||||
}
|
||||
|
||||
/**
|
||||
* 平台企业预扣增值税
|
||||
* @return string
|
||||
*/
|
||||
public function getDealerValueAddedTax()
|
||||
{
|
||||
return $this->dealer_value_added_tax;
|
||||
}
|
||||
|
||||
/**
|
||||
* 用户预扣附加税费
|
||||
* @var string $user_additional_tax
|
||||
*/
|
||||
public function setUserAdditionalTax($user_additional_tax)
|
||||
{
|
||||
$this->user_additional_tax = $user_additional_tax;
|
||||
}
|
||||
|
||||
/**
|
||||
* 用户预扣附加税费
|
||||
* @return string
|
||||
*/
|
||||
public function getUserAdditionalTax()
|
||||
{
|
||||
return $this->user_additional_tax;
|
||||
}
|
||||
|
||||
/**
|
||||
* 平台企业预扣附加税费
|
||||
* @var string $dealer_additional_tax
|
||||
*/
|
||||
public function setDealerAdditionalTax($dealer_additional_tax)
|
||||
{
|
||||
$this->dealer_additional_tax = $dealer_additional_tax;
|
||||
}
|
||||
|
||||
/**
|
||||
* 平台企业预扣附加税费
|
||||
* @return string
|
||||
*/
|
||||
public function getDealerAdditionalTax()
|
||||
{
|
||||
return $this->dealer_additional_tax;
|
||||
}
|
||||
|
||||
/**
|
||||
* 用户实缴个税
|
||||
* @var string $user_received_personal_tax
|
||||
*/
|
||||
public function setUserReceivedPersonalTax($user_received_personal_tax)
|
||||
{
|
||||
$this->user_received_personal_tax = $user_received_personal_tax;
|
||||
}
|
||||
|
||||
/**
|
||||
* 用户实缴个税
|
||||
* @return string
|
||||
*/
|
||||
public function getUserReceivedPersonalTax()
|
||||
{
|
||||
return $this->user_received_personal_tax;
|
||||
}
|
||||
|
||||
/**
|
||||
* 平台企业实缴个税
|
||||
* @var string $dealer_received_personal_tax
|
||||
*/
|
||||
public function setDealerReceivedPersonalTax($dealer_received_personal_tax)
|
||||
{
|
||||
$this->dealer_received_personal_tax = $dealer_received_personal_tax;
|
||||
}
|
||||
|
||||
/**
|
||||
* 平台企业实缴个税
|
||||
* @return string
|
||||
*/
|
||||
public function getDealerReceivedPersonalTax()
|
||||
{
|
||||
return $this->dealer_received_personal_tax;
|
||||
}
|
||||
|
||||
/**
|
||||
* 用户实缴增值税
|
||||
* @var string $user_received_value_added_tax
|
||||
*/
|
||||
public function setUserReceivedValueAddedTax($user_received_value_added_tax)
|
||||
{
|
||||
$this->user_received_value_added_tax = $user_received_value_added_tax;
|
||||
}
|
||||
|
||||
/**
|
||||
* 用户实缴增值税
|
||||
* @return string
|
||||
*/
|
||||
public function getUserReceivedValueAddedTax()
|
||||
{
|
||||
return $this->user_received_value_added_tax;
|
||||
}
|
||||
|
||||
/**
|
||||
* 平台企业实缴增值税
|
||||
* @var string $dealer_received_value_added_tax
|
||||
*/
|
||||
public function setDealerReceivedValueAddedTax($dealer_received_value_added_tax)
|
||||
{
|
||||
$this->dealer_received_value_added_tax = $dealer_received_value_added_tax;
|
||||
}
|
||||
|
||||
/**
|
||||
* 平台企业实缴增值税
|
||||
* @return string
|
||||
*/
|
||||
public function getDealerReceivedValueAddedTax()
|
||||
{
|
||||
return $this->dealer_received_value_added_tax;
|
||||
}
|
||||
|
||||
/**
|
||||
* 用户实缴附加税费
|
||||
* @var string $user_received_additional_tax
|
||||
*/
|
||||
public function setUserReceivedAdditionalTax($user_received_additional_tax)
|
||||
{
|
||||
$this->user_received_additional_tax = $user_received_additional_tax;
|
||||
}
|
||||
|
||||
/**
|
||||
* 用户实缴附加税费
|
||||
* @return string
|
||||
*/
|
||||
public function getUserReceivedAdditionalTax()
|
||||
{
|
||||
return $this->user_received_additional_tax;
|
||||
}
|
||||
|
||||
/**
|
||||
* 平台企业实缴附加税费
|
||||
* @var string $dealer_received_additional_tax
|
||||
*/
|
||||
public function setDealerReceivedAdditionalTax($dealer_received_additional_tax)
|
||||
{
|
||||
$this->dealer_received_additional_tax = $dealer_received_additional_tax;
|
||||
}
|
||||
|
||||
/**
|
||||
* 平台企业实缴附加税费
|
||||
* @return string
|
||||
*/
|
||||
public function getDealerReceivedAdditionalTax()
|
||||
{
|
||||
return $this->dealer_received_additional_tax;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -51,10 +51,15 @@ class DealerOrderInfo extends BaseModel
|
||||
*/
|
||||
protected $broker_amount;
|
||||
/**
|
||||
* 综合服务主体加成服务费
|
||||
* 应收综合服务主体加成服务费金额
|
||||
* @var string
|
||||
*/
|
||||
protected $broker_fee;
|
||||
/**
|
||||
* 实收综合服务主体加成服务费金额
|
||||
* @var string
|
||||
*/
|
||||
protected $received_broker_fee;
|
||||
/**
|
||||
* 支付路径流水号
|
||||
* @var string
|
||||
@@ -115,6 +120,21 @@ class DealerOrderInfo extends BaseModel
|
||||
* @var string
|
||||
*/
|
||||
protected $finished_time;
|
||||
/**
|
||||
* 预扣税费总额
|
||||
* @var string
|
||||
*/
|
||||
protected $tax_amount;
|
||||
/**
|
||||
* 实缴税费总额
|
||||
* @var string
|
||||
*/
|
||||
protected $received_tax_amount;
|
||||
/**
|
||||
* 缴税明细
|
||||
* @var OrderTaxDetail
|
||||
*/
|
||||
protected $tax_detail;
|
||||
|
||||
/**
|
||||
* 综合服务主体 ID
|
||||
@@ -261,7 +281,7 @@ class DealerOrderInfo extends BaseModel
|
||||
}
|
||||
|
||||
/**
|
||||
* 综合服务主体加成服务费
|
||||
* 应收综合服务主体加成服务费金额
|
||||
* @var string $broker_fee
|
||||
*/
|
||||
public function setBrokerFee($broker_fee)
|
||||
@@ -270,7 +290,7 @@ class DealerOrderInfo extends BaseModel
|
||||
}
|
||||
|
||||
/**
|
||||
* 综合服务主体加成服务费
|
||||
* 应收综合服务主体加成服务费金额
|
||||
* @return string
|
||||
*/
|
||||
public function getBrokerFee()
|
||||
@@ -278,6 +298,24 @@ class DealerOrderInfo 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
|
||||
@@ -493,4 +531,58 @@ class DealerOrderInfo extends BaseModel
|
||||
{
|
||||
return $this->finished_time;
|
||||
}
|
||||
|
||||
/**
|
||||
* 预扣税费总额
|
||||
* @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;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -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;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -21,25 +21,145 @@ class MonthlyOrderSummary extends BaseModel
|
||||
*/
|
||||
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 string
|
||||
*/
|
||||
protected $received_broker_fee;
|
||||
/**
|
||||
* 实收余额账户支出加成服务费金额
|
||||
* @var string
|
||||
*/
|
||||
protected $received_broker_real_fee;
|
||||
/**
|
||||
* 实收加成服务费抵扣金额
|
||||
* @var string
|
||||
*/
|
||||
protected $received_broker_deduct_fee;
|
||||
/**
|
||||
* 实收用户加成服务费金额
|
||||
* @var string
|
||||
*/
|
||||
protected $received_user_fee;
|
||||
/**
|
||||
* 预扣税费总额
|
||||
* @var string
|
||||
*/
|
||||
protected $tax;
|
||||
/**
|
||||
* 实缴税费总额
|
||||
* @var string
|
||||
*/
|
||||
protected $received_tax_amount;
|
||||
/**
|
||||
* 预扣个税
|
||||
* @var string
|
||||
*/
|
||||
protected $personal_tax;
|
||||
/**
|
||||
* 预扣增值税
|
||||
* @var string
|
||||
*/
|
||||
protected $value_added_tax;
|
||||
/**
|
||||
* 预扣附加税费
|
||||
* @var string
|
||||
*/
|
||||
protected $additional_tax;
|
||||
/**
|
||||
* 实缴个税
|
||||
* @var string
|
||||
*/
|
||||
protected $received_personal_tax;
|
||||
/**
|
||||
* 实缴增值税
|
||||
* @var string
|
||||
*/
|
||||
protected $received_value_added_tax;
|
||||
/**
|
||||
* 实缴附加税费
|
||||
* @var string
|
||||
*/
|
||||
protected $received_additional_tax;
|
||||
/**
|
||||
* 用户预扣个税
|
||||
* @var string
|
||||
*/
|
||||
protected $user_personal_tax;
|
||||
/**
|
||||
* 平台企业预扣个税
|
||||
* @var string
|
||||
*/
|
||||
protected $dealer_personal_tax;
|
||||
/**
|
||||
* 用户预扣增值税
|
||||
* @var string
|
||||
*/
|
||||
protected $user_value_added_tax;
|
||||
/**
|
||||
* 平台企业预扣增值税
|
||||
* @var string
|
||||
*/
|
||||
protected $dealer_value_added_tax;
|
||||
/**
|
||||
* 用户预扣附加税费
|
||||
* @var string
|
||||
*/
|
||||
protected $user_additional_tax;
|
||||
/**
|
||||
* 平台企业预扣附加税费
|
||||
* @var string
|
||||
*/
|
||||
protected $dealer_additional_tax;
|
||||
/**
|
||||
* 用户实缴个税
|
||||
* @var string
|
||||
*/
|
||||
protected $user_received_personal_tax;
|
||||
/**
|
||||
* 平台企业实缴个税
|
||||
* @var string
|
||||
*/
|
||||
protected $dealer_received_personal_tax;
|
||||
/**
|
||||
* 用户实缴增值税
|
||||
* @var string
|
||||
*/
|
||||
protected $user_received_value_added_tax;
|
||||
/**
|
||||
* 平台企业实缴增值税
|
||||
* @var string
|
||||
*/
|
||||
protected $dealer_received_value_added_tax;
|
||||
/**
|
||||
* 用户实缴附加税费
|
||||
* @var string
|
||||
*/
|
||||
protected $user_received_additional_tax;
|
||||
/**
|
||||
* 平台企业实缴附加税费
|
||||
* @var string
|
||||
*/
|
||||
protected $dealer_received_additional_tax;
|
||||
|
||||
/**
|
||||
* 订单数量
|
||||
@@ -78,7 +198,7 @@ class MonthlyOrderSummary extends BaseModel
|
||||
}
|
||||
|
||||
/**
|
||||
* 加成服务费金额
|
||||
* 应收综合服务主体加成服务费金额
|
||||
* @var string $broker_fee
|
||||
*/
|
||||
public function setBrokerFee($broker_fee)
|
||||
@@ -87,7 +207,7 @@ class MonthlyOrderSummary extends BaseModel
|
||||
}
|
||||
|
||||
/**
|
||||
* 加成服务费金额
|
||||
* 应收综合服务主体加成服务费金额
|
||||
* @return string
|
||||
*/
|
||||
public function getBrokerFee()
|
||||
@@ -96,7 +216,7 @@ class MonthlyOrderSummary extends BaseModel
|
||||
}
|
||||
|
||||
/**
|
||||
* 加成服务费实收金额
|
||||
* 应收余额账户支出加成服务费金额
|
||||
* @var string $broker_real_fee
|
||||
*/
|
||||
public function setBrokerRealFee($broker_real_fee)
|
||||
@@ -105,7 +225,7 @@ class MonthlyOrderSummary extends BaseModel
|
||||
}
|
||||
|
||||
/**
|
||||
* 加成服务费实收金额
|
||||
* 应收余额账户支出加成服务费金额
|
||||
* @return string
|
||||
*/
|
||||
public function getBrokerRealFee()
|
||||
@@ -114,7 +234,7 @@ class MonthlyOrderSummary extends BaseModel
|
||||
}
|
||||
|
||||
/**
|
||||
* 已抵扣加成服务费金额
|
||||
* 应收加成服务费抵扣金额
|
||||
* @var string $broker_rebate_fee
|
||||
*/
|
||||
public function setBrokerRebateFee($broker_rebate_fee)
|
||||
@@ -123,7 +243,7 @@ class MonthlyOrderSummary extends BaseModel
|
||||
}
|
||||
|
||||
/**
|
||||
* 已抵扣加成服务费金额
|
||||
* 应收加成服务费抵扣金额
|
||||
* @return string
|
||||
*/
|
||||
public function getBrokerRebateFee()
|
||||
@@ -132,7 +252,7 @@ class MonthlyOrderSummary extends BaseModel
|
||||
}
|
||||
|
||||
/**
|
||||
* 用户加成服务费金额
|
||||
* 应收用户加成服务费金额
|
||||
* @var string $user_fee
|
||||
*/
|
||||
public function setUserFee($user_fee)
|
||||
@@ -141,11 +261,443 @@ class MonthlyOrderSummary extends BaseModel
|
||||
}
|
||||
|
||||
/**
|
||||
* 用户加成服务费金额
|
||||
* 应收用户加成服务费金额
|
||||
* @return string
|
||||
*/
|
||||
public function getUserFee()
|
||||
{
|
||||
return $this->user_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 $received_broker_real_fee
|
||||
*/
|
||||
public function setReceivedBrokerRealFee($received_broker_real_fee)
|
||||
{
|
||||
$this->received_broker_real_fee = $received_broker_real_fee;
|
||||
}
|
||||
|
||||
/**
|
||||
* 实收余额账户支出加成服务费金额
|
||||
* @return string
|
||||
*/
|
||||
public function getReceivedBrokerRealFee()
|
||||
{
|
||||
return $this->received_broker_real_fee;
|
||||
}
|
||||
|
||||
/**
|
||||
* 实收加成服务费抵扣金额
|
||||
* @var string $received_broker_deduct_fee
|
||||
*/
|
||||
public function setReceivedBrokerDeductFee($received_broker_deduct_fee)
|
||||
{
|
||||
$this->received_broker_deduct_fee = $received_broker_deduct_fee;
|
||||
}
|
||||
|
||||
/**
|
||||
* 实收加成服务费抵扣金额
|
||||
* @return string
|
||||
*/
|
||||
public function getReceivedBrokerDeductFee()
|
||||
{
|
||||
return $this->received_broker_deduct_fee;
|
||||
}
|
||||
|
||||
/**
|
||||
* 实收用户加成服务费金额
|
||||
* @var string $received_user_fee
|
||||
*/
|
||||
public function setReceivedUserFee($received_user_fee)
|
||||
{
|
||||
$this->received_user_fee = $received_user_fee;
|
||||
}
|
||||
|
||||
/**
|
||||
* 实收用户加成服务费金额
|
||||
* @return string
|
||||
*/
|
||||
public function getReceivedUserFee()
|
||||
{
|
||||
return $this->received_user_fee;
|
||||
}
|
||||
|
||||
/**
|
||||
* 预扣税费总额
|
||||
* @var string $tax
|
||||
*/
|
||||
public function setTax($tax)
|
||||
{
|
||||
$this->tax = $tax;
|
||||
}
|
||||
|
||||
/**
|
||||
* 预扣税费总额
|
||||
* @return string
|
||||
*/
|
||||
public function getTax()
|
||||
{
|
||||
return $this->tax;
|
||||
}
|
||||
|
||||
/**
|
||||
* 实缴税费总额
|
||||
* @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 string $personal_tax
|
||||
*/
|
||||
public function setPersonalTax($personal_tax)
|
||||
{
|
||||
$this->personal_tax = $personal_tax;
|
||||
}
|
||||
|
||||
/**
|
||||
* 预扣个税
|
||||
* @return string
|
||||
*/
|
||||
public function getPersonalTax()
|
||||
{
|
||||
return $this->personal_tax;
|
||||
}
|
||||
|
||||
/**
|
||||
* 预扣增值税
|
||||
* @var string $value_added_tax
|
||||
*/
|
||||
public function setValueAddedTax($value_added_tax)
|
||||
{
|
||||
$this->value_added_tax = $value_added_tax;
|
||||
}
|
||||
|
||||
/**
|
||||
* 预扣增值税
|
||||
* @return string
|
||||
*/
|
||||
public function getValueAddedTax()
|
||||
{
|
||||
return $this->value_added_tax;
|
||||
}
|
||||
|
||||
/**
|
||||
* 预扣附加税费
|
||||
* @var string $additional_tax
|
||||
*/
|
||||
public function setAdditionalTax($additional_tax)
|
||||
{
|
||||
$this->additional_tax = $additional_tax;
|
||||
}
|
||||
|
||||
/**
|
||||
* 预扣附加税费
|
||||
* @return string
|
||||
*/
|
||||
public function getAdditionalTax()
|
||||
{
|
||||
return $this->additional_tax;
|
||||
}
|
||||
|
||||
/**
|
||||
* 实缴个税
|
||||
* @var string $received_personal_tax
|
||||
*/
|
||||
public function setReceivedPersonalTax($received_personal_tax)
|
||||
{
|
||||
$this->received_personal_tax = $received_personal_tax;
|
||||
}
|
||||
|
||||
/**
|
||||
* 实缴个税
|
||||
* @return string
|
||||
*/
|
||||
public function getReceivedPersonalTax()
|
||||
{
|
||||
return $this->received_personal_tax;
|
||||
}
|
||||
|
||||
/**
|
||||
* 实缴增值税
|
||||
* @var string $received_value_added_tax
|
||||
*/
|
||||
public function setReceivedValueAddedTax($received_value_added_tax)
|
||||
{
|
||||
$this->received_value_added_tax = $received_value_added_tax;
|
||||
}
|
||||
|
||||
/**
|
||||
* 实缴增值税
|
||||
* @return string
|
||||
*/
|
||||
public function getReceivedValueAddedTax()
|
||||
{
|
||||
return $this->received_value_added_tax;
|
||||
}
|
||||
|
||||
/**
|
||||
* 实缴附加税费
|
||||
* @var string $received_additional_tax
|
||||
*/
|
||||
public function setReceivedAdditionalTax($received_additional_tax)
|
||||
{
|
||||
$this->received_additional_tax = $received_additional_tax;
|
||||
}
|
||||
|
||||
/**
|
||||
* 实缴附加税费
|
||||
* @return string
|
||||
*/
|
||||
public function getReceivedAdditionalTax()
|
||||
{
|
||||
return $this->received_additional_tax;
|
||||
}
|
||||
|
||||
/**
|
||||
* 用户预扣个税
|
||||
* @var string $user_personal_tax
|
||||
*/
|
||||
public function setUserPersonalTax($user_personal_tax)
|
||||
{
|
||||
$this->user_personal_tax = $user_personal_tax;
|
||||
}
|
||||
|
||||
/**
|
||||
* 用户预扣个税
|
||||
* @return string
|
||||
*/
|
||||
public function getUserPersonalTax()
|
||||
{
|
||||
return $this->user_personal_tax;
|
||||
}
|
||||
|
||||
/**
|
||||
* 平台企业预扣个税
|
||||
* @var string $dealer_personal_tax
|
||||
*/
|
||||
public function setDealerPersonalTax($dealer_personal_tax)
|
||||
{
|
||||
$this->dealer_personal_tax = $dealer_personal_tax;
|
||||
}
|
||||
|
||||
/**
|
||||
* 平台企业预扣个税
|
||||
* @return string
|
||||
*/
|
||||
public function getDealerPersonalTax()
|
||||
{
|
||||
return $this->dealer_personal_tax;
|
||||
}
|
||||
|
||||
/**
|
||||
* 用户预扣增值税
|
||||
* @var string $user_value_added_tax
|
||||
*/
|
||||
public function setUserValueAddedTax($user_value_added_tax)
|
||||
{
|
||||
$this->user_value_added_tax = $user_value_added_tax;
|
||||
}
|
||||
|
||||
/**
|
||||
* 用户预扣增值税
|
||||
* @return string
|
||||
*/
|
||||
public function getUserValueAddedTax()
|
||||
{
|
||||
return $this->user_value_added_tax;
|
||||
}
|
||||
|
||||
/**
|
||||
* 平台企业预扣增值税
|
||||
* @var string $dealer_value_added_tax
|
||||
*/
|
||||
public function setDealerValueAddedTax($dealer_value_added_tax)
|
||||
{
|
||||
$this->dealer_value_added_tax = $dealer_value_added_tax;
|
||||
}
|
||||
|
||||
/**
|
||||
* 平台企业预扣增值税
|
||||
* @return string
|
||||
*/
|
||||
public function getDealerValueAddedTax()
|
||||
{
|
||||
return $this->dealer_value_added_tax;
|
||||
}
|
||||
|
||||
/**
|
||||
* 用户预扣附加税费
|
||||
* @var string $user_additional_tax
|
||||
*/
|
||||
public function setUserAdditionalTax($user_additional_tax)
|
||||
{
|
||||
$this->user_additional_tax = $user_additional_tax;
|
||||
}
|
||||
|
||||
/**
|
||||
* 用户预扣附加税费
|
||||
* @return string
|
||||
*/
|
||||
public function getUserAdditionalTax()
|
||||
{
|
||||
return $this->user_additional_tax;
|
||||
}
|
||||
|
||||
/**
|
||||
* 平台企业预扣附加税费
|
||||
* @var string $dealer_additional_tax
|
||||
*/
|
||||
public function setDealerAdditionalTax($dealer_additional_tax)
|
||||
{
|
||||
$this->dealer_additional_tax = $dealer_additional_tax;
|
||||
}
|
||||
|
||||
/**
|
||||
* 平台企业预扣附加税费
|
||||
* @return string
|
||||
*/
|
||||
public function getDealerAdditionalTax()
|
||||
{
|
||||
return $this->dealer_additional_tax;
|
||||
}
|
||||
|
||||
/**
|
||||
* 用户实缴个税
|
||||
* @var string $user_received_personal_tax
|
||||
*/
|
||||
public function setUserReceivedPersonalTax($user_received_personal_tax)
|
||||
{
|
||||
$this->user_received_personal_tax = $user_received_personal_tax;
|
||||
}
|
||||
|
||||
/**
|
||||
* 用户实缴个税
|
||||
* @return string
|
||||
*/
|
||||
public function getUserReceivedPersonalTax()
|
||||
{
|
||||
return $this->user_received_personal_tax;
|
||||
}
|
||||
|
||||
/**
|
||||
* 平台企业实缴个税
|
||||
* @var string $dealer_received_personal_tax
|
||||
*/
|
||||
public function setDealerReceivedPersonalTax($dealer_received_personal_tax)
|
||||
{
|
||||
$this->dealer_received_personal_tax = $dealer_received_personal_tax;
|
||||
}
|
||||
|
||||
/**
|
||||
* 平台企业实缴个税
|
||||
* @return string
|
||||
*/
|
||||
public function getDealerReceivedPersonalTax()
|
||||
{
|
||||
return $this->dealer_received_personal_tax;
|
||||
}
|
||||
|
||||
/**
|
||||
* 用户实缴增值税
|
||||
* @var string $user_received_value_added_tax
|
||||
*/
|
||||
public function setUserReceivedValueAddedTax($user_received_value_added_tax)
|
||||
{
|
||||
$this->user_received_value_added_tax = $user_received_value_added_tax;
|
||||
}
|
||||
|
||||
/**
|
||||
* 用户实缴增值税
|
||||
* @return string
|
||||
*/
|
||||
public function getUserReceivedValueAddedTax()
|
||||
{
|
||||
return $this->user_received_value_added_tax;
|
||||
}
|
||||
|
||||
/**
|
||||
* 平台企业实缴增值税
|
||||
* @var string $dealer_received_value_added_tax
|
||||
*/
|
||||
public function setDealerReceivedValueAddedTax($dealer_received_value_added_tax)
|
||||
{
|
||||
$this->dealer_received_value_added_tax = $dealer_received_value_added_tax;
|
||||
}
|
||||
|
||||
/**
|
||||
* 平台企业实缴增值税
|
||||
* @return string
|
||||
*/
|
||||
public function getDealerReceivedValueAddedTax()
|
||||
{
|
||||
return $this->dealer_received_value_added_tax;
|
||||
}
|
||||
|
||||
/**
|
||||
* 用户实缴附加税费
|
||||
* @var string $user_received_additional_tax
|
||||
*/
|
||||
public function setUserReceivedAdditionalTax($user_received_additional_tax)
|
||||
{
|
||||
$this->user_received_additional_tax = $user_received_additional_tax;
|
||||
}
|
||||
|
||||
/**
|
||||
* 用户实缴附加税费
|
||||
* @return string
|
||||
*/
|
||||
public function getUserReceivedAdditionalTax()
|
||||
{
|
||||
return $this->user_received_additional_tax;
|
||||
}
|
||||
|
||||
/**
|
||||
* 平台企业实缴附加税费
|
||||
* @var string $dealer_received_additional_tax
|
||||
*/
|
||||
public function setDealerReceivedAdditionalTax($dealer_received_additional_tax)
|
||||
{
|
||||
$this->dealer_received_additional_tax = $dealer_received_additional_tax;
|
||||
}
|
||||
|
||||
/**
|
||||
* 平台企业实缴附加税费
|
||||
* @return string
|
||||
*/
|
||||
public function getDealerReceivedAdditionalTax()
|
||||
{
|
||||
return $this->dealer_received_additional_tax;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -61,12 +61,12 @@ class StatementDetail extends BaseModel
|
||||
*/
|
||||
protected $reex_amount;
|
||||
/**
|
||||
* 加成服务费金额
|
||||
* 实收综合服务主体加成服务费金额
|
||||
* @var string
|
||||
*/
|
||||
protected $fee_amount;
|
||||
/**
|
||||
* 加成服务费抵扣金额
|
||||
* 实收加成服务费抵扣金额
|
||||
* @var string
|
||||
*/
|
||||
protected $deduct_rebate_fee_amount;
|
||||
@@ -95,6 +95,11 @@ class StatementDetail extends BaseModel
|
||||
* @var string
|
||||
*/
|
||||
protected $project_name;
|
||||
/**
|
||||
* 实纳税费金额
|
||||
* @var string
|
||||
*/
|
||||
protected $received_tax_amount;
|
||||
|
||||
/**
|
||||
* 账单 ID
|
||||
@@ -277,7 +282,7 @@ class StatementDetail extends BaseModel
|
||||
}
|
||||
|
||||
/**
|
||||
* 加成服务费金额
|
||||
* 实收综合服务主体加成服务费金额
|
||||
* @var string $fee_amount
|
||||
*/
|
||||
public function setFeeAmount($fee_amount)
|
||||
@@ -286,7 +291,7 @@ class StatementDetail extends BaseModel
|
||||
}
|
||||
|
||||
/**
|
||||
* 加成服务费金额
|
||||
* 实收综合服务主体加成服务费金额
|
||||
* @return string
|
||||
*/
|
||||
public function getFeeAmount()
|
||||
@@ -295,7 +300,7 @@ class StatementDetail extends BaseModel
|
||||
}
|
||||
|
||||
/**
|
||||
* 加成服务费抵扣金额
|
||||
* 实收加成服务费抵扣金额
|
||||
* @var string $deduct_rebate_fee_amount
|
||||
*/
|
||||
public function setDeductRebateFeeAmount($deduct_rebate_fee_amount)
|
||||
@@ -304,7 +309,7 @@ class StatementDetail extends BaseModel
|
||||
}
|
||||
|
||||
/**
|
||||
* 加成服务费抵扣金额
|
||||
* 实收加成服务费抵扣金额
|
||||
* @return string
|
||||
*/
|
||||
public function getDeductRebateFeeAmount()
|
||||
@@ -401,4 +406,22 @@ class StatementDetail extends BaseModel
|
||||
{
|
||||
return $this->project_name;
|
||||
}
|
||||
|
||||
/**
|
||||
* 实纳税费金额
|
||||
* @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;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -35,6 +35,11 @@ class H5UserPresignRequest extends BaseRequest
|
||||
* @var int32
|
||||
*/
|
||||
public $certificate_type;
|
||||
/**
|
||||
* 是否收集手机号码 0:不收集(默认) 1:收集手机号码
|
||||
* @var int32
|
||||
*/
|
||||
public $collect_phone_no;
|
||||
|
||||
public function __construct($params = array())
|
||||
{
|
||||
|
||||
@@ -41,7 +41,7 @@ class BatchOrderInfo extends BaseModel
|
||||
*/
|
||||
protected $phone_no;
|
||||
/**
|
||||
* 项目标识
|
||||
* 业务线标识
|
||||
* @var string
|
||||
*/
|
||||
protected $project_id;
|
||||
@@ -60,6 +60,21 @@ class BatchOrderInfo extends BaseModel
|
||||
* @var string
|
||||
*/
|
||||
protected $notify_url;
|
||||
/**
|
||||
* 互联网平台名称
|
||||
* @var string
|
||||
*/
|
||||
protected $dealer_platform_name;
|
||||
/**
|
||||
* 用户名称/昵称
|
||||
* @var string
|
||||
*/
|
||||
protected $dealer_user_nickname;
|
||||
/**
|
||||
* 用户唯一标识码
|
||||
* @var string
|
||||
*/
|
||||
protected $dealer_user_id;
|
||||
|
||||
/**
|
||||
* 平台企业订单号
|
||||
@@ -170,7 +185,7 @@ class BatchOrderInfo extends BaseModel
|
||||
}
|
||||
|
||||
/**
|
||||
* 项目标识
|
||||
* 业务线标识
|
||||
* @var string $project_id
|
||||
*/
|
||||
public function setProjectId($project_id)
|
||||
@@ -179,7 +194,7 @@ class BatchOrderInfo extends BaseModel
|
||||
}
|
||||
|
||||
/**
|
||||
* 项目标识
|
||||
* 业务线标识
|
||||
* @return string
|
||||
*/
|
||||
public function getProjectId()
|
||||
@@ -240,4 +255,58 @@ class BatchOrderInfo extends BaseModel
|
||||
{
|
||||
return $this->notify_url;
|
||||
}
|
||||
|
||||
/**
|
||||
* 互联网平台名称
|
||||
* @var string $dealer_platform_name
|
||||
*/
|
||||
public function setDealerPlatformName($dealer_platform_name)
|
||||
{
|
||||
$this->dealer_platform_name = $dealer_platform_name;
|
||||
}
|
||||
|
||||
/**
|
||||
* 互联网平台名称
|
||||
* @return string
|
||||
*/
|
||||
public function getDealerPlatformName()
|
||||
{
|
||||
return $this->dealer_platform_name;
|
||||
}
|
||||
|
||||
/**
|
||||
* 用户名称/昵称
|
||||
* @var string $dealer_user_nickname
|
||||
*/
|
||||
public function setDealerUserNickname($dealer_user_nickname)
|
||||
{
|
||||
$this->dealer_user_nickname = $dealer_user_nickname;
|
||||
}
|
||||
|
||||
/**
|
||||
* 用户名称/昵称
|
||||
* @return string
|
||||
*/
|
||||
public function getDealerUserNickname()
|
||||
{
|
||||
return $this->dealer_user_nickname;
|
||||
}
|
||||
|
||||
/**
|
||||
* 用户唯一标识码
|
||||
* @var string $dealer_user_id
|
||||
*/
|
||||
public function setDealerUserId($dealer_user_id)
|
||||
{
|
||||
$this->dealer_user_id = $dealer_user_id;
|
||||
}
|
||||
|
||||
/**
|
||||
* 用户唯一标识码
|
||||
* @return string
|
||||
*/
|
||||
public function getDealerUserId()
|
||||
{
|
||||
return $this->dealer_user_id;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -61,7 +61,7 @@ class CreateAlipayOrderRequest extends BaseRequest
|
||||
*/
|
||||
public $notify_url;
|
||||
/**
|
||||
* 项目标识
|
||||
* 业务线标识
|
||||
* @var string
|
||||
*/
|
||||
public $project_id;
|
||||
@@ -70,6 +70,21 @@ class CreateAlipayOrderRequest extends BaseRequest
|
||||
* @var string
|
||||
*/
|
||||
public $check_name;
|
||||
/**
|
||||
* 互联网平台名称
|
||||
* @var string
|
||||
*/
|
||||
public $dealer_platform_name;
|
||||
/**
|
||||
* 用户名称/昵称
|
||||
* @var string
|
||||
*/
|
||||
public $dealer_user_nickname;
|
||||
/**
|
||||
* 用户唯一标识码
|
||||
* @var string
|
||||
*/
|
||||
public $dealer_user_id;
|
||||
|
||||
public function __construct($params = array())
|
||||
{
|
||||
|
||||
@@ -61,10 +61,25 @@ class CreateBankpayOrderRequest extends BaseRequest
|
||||
*/
|
||||
public $notify_url;
|
||||
/**
|
||||
* 项目标识
|
||||
* 业务线标识
|
||||
* @var string
|
||||
*/
|
||||
public $project_id;
|
||||
/**
|
||||
* 互联网平台名称
|
||||
* @var string
|
||||
*/
|
||||
public $dealer_platform_name;
|
||||
/**
|
||||
* 用户名称/昵称
|
||||
* @var string
|
||||
*/
|
||||
public $dealer_user_nickname;
|
||||
/**
|
||||
* 用户唯一标识码
|
||||
* @var string
|
||||
*/
|
||||
public $dealer_user_id;
|
||||
|
||||
public function __construct($params = array())
|
||||
{
|
||||
|
||||
@@ -71,7 +71,7 @@ class CreateWxpayOrderRequest extends BaseRequest
|
||||
*/
|
||||
public $wxpay_mode;
|
||||
/**
|
||||
* 项目标识
|
||||
* 业务线标识
|
||||
* @var string
|
||||
*/
|
||||
public $project_id;
|
||||
@@ -80,6 +80,21 @@ class CreateWxpayOrderRequest extends BaseRequest
|
||||
* @var string
|
||||
*/
|
||||
public $notes;
|
||||
/**
|
||||
* 互联网平台名称
|
||||
* @var string
|
||||
*/
|
||||
public $dealer_platform_name;
|
||||
/**
|
||||
* 用户名称/昵称
|
||||
* @var string
|
||||
*/
|
||||
public $dealer_user_nickname;
|
||||
/**
|
||||
* 用户唯一标识码
|
||||
* @var string
|
||||
*/
|
||||
public $dealer_user_id;
|
||||
|
||||
public function __construct($params = array())
|
||||
{
|
||||
|
||||
@@ -67,7 +67,7 @@ class GetOrderResponseData extends BaseModel implements ResponseDataInterface
|
||||
*/
|
||||
protected $status_message;
|
||||
/**
|
||||
* 订单详细状态码描述
|
||||
* 订单详情状态码描述
|
||||
* @var string
|
||||
*/
|
||||
protected $status_detail_message;
|
||||
@@ -107,37 +107,57 @@ class GetOrderResponseData extends BaseModel implements ResponseDataInterface
|
||||
*/
|
||||
protected $finished_time;
|
||||
/**
|
||||
* 综合服务主体加成服务费
|
||||
* 应收综合服务主体加成服务费金额
|
||||
* @var string
|
||||
*/
|
||||
protected $broker_fee;
|
||||
/**
|
||||
* 余额账户支出加成服务费
|
||||
* 应收余额账户支出加成服务费金额
|
||||
* @var string
|
||||
*/
|
||||
protected $broker_real_fee;
|
||||
/**
|
||||
* 抵扣账户支出加成服务费
|
||||
* 应收加成服务费抵扣金额
|
||||
* @var string
|
||||
*/
|
||||
protected $broker_deduct_fee;
|
||||
/**
|
||||
* 应收用户加成服务费金额
|
||||
* @var string
|
||||
*/
|
||||
protected $user_fee;
|
||||
/**
|
||||
* 实收综合服务主体加成服务费金额
|
||||
* @var string
|
||||
*/
|
||||
protected $received_broker_fee;
|
||||
/**
|
||||
* 实收余额账户支出加成服务费金额
|
||||
* @var string
|
||||
*/
|
||||
protected $received_broker_real_fee;
|
||||
/**
|
||||
* 实收加成服务费抵扣金额
|
||||
* @var string
|
||||
*/
|
||||
protected $received_broker_deduct_fee;
|
||||
/**
|
||||
* 实收用户加成服务费金额
|
||||
* @var string
|
||||
*/
|
||||
protected $received_user_fee;
|
||||
/**
|
||||
* 订单备注
|
||||
* @var string
|
||||
*/
|
||||
protected $pay_remark;
|
||||
/**
|
||||
* 用户加成服务费
|
||||
* @var string
|
||||
*/
|
||||
protected $user_fee;
|
||||
/**
|
||||
* 银行名称
|
||||
* @var string
|
||||
*/
|
||||
protected $bank_name;
|
||||
/**
|
||||
* 项目标识
|
||||
* 业务线标识
|
||||
* @var string
|
||||
*/
|
||||
protected $project_id;
|
||||
@@ -166,6 +186,46 @@ class GetOrderResponseData extends BaseModel implements ResponseDataInterface
|
||||
* @var string
|
||||
*/
|
||||
protected $sys_fee;
|
||||
/**
|
||||
* 用户实收金额
|
||||
* @var string
|
||||
*/
|
||||
protected $user_real_amount;
|
||||
/**
|
||||
* 缴税明细
|
||||
* @var TaxDetail
|
||||
*/
|
||||
protected $tax_detail;
|
||||
/**
|
||||
* 实缴税费总额
|
||||
* @var string
|
||||
*/
|
||||
protected $received_tax_amount;
|
||||
/**
|
||||
* 互联网平台名称
|
||||
* @var string
|
||||
*/
|
||||
protected $dealer_platform_name;
|
||||
/**
|
||||
* 用户名称/昵称
|
||||
* @var string
|
||||
*/
|
||||
protected $dealer_user_nickname;
|
||||
/**
|
||||
* 用户唯一标识码
|
||||
* @var string
|
||||
*/
|
||||
protected $dealer_user_id;
|
||||
/**
|
||||
* 用户实收金额(追缴前)
|
||||
* @var string
|
||||
*/
|
||||
protected $user_real_excluding_vat_amount;
|
||||
/**
|
||||
* 已追缴增附税(本笔订单)
|
||||
* @var string
|
||||
*/
|
||||
protected $user_recover_tax_amount;
|
||||
|
||||
/**
|
||||
* 平台企业订单号
|
||||
@@ -366,7 +426,7 @@ class GetOrderResponseData extends BaseModel implements ResponseDataInterface
|
||||
}
|
||||
|
||||
/**
|
||||
* 订单详细状态码描述
|
||||
* 订单详情状态码描述
|
||||
* @var string $status_detail_message
|
||||
*/
|
||||
public function setStatusDetailMessage($status_detail_message)
|
||||
@@ -375,7 +435,7 @@ class GetOrderResponseData extends BaseModel implements ResponseDataInterface
|
||||
}
|
||||
|
||||
/**
|
||||
* 订单详细状态码描述
|
||||
* 订单详情状态码描述
|
||||
* @return string
|
||||
*/
|
||||
public function getStatusDetailMessage()
|
||||
@@ -510,7 +570,7 @@ class GetOrderResponseData extends BaseModel implements ResponseDataInterface
|
||||
}
|
||||
|
||||
/**
|
||||
* 综合服务主体加成服务费
|
||||
* 应收综合服务主体加成服务费金额
|
||||
* @var string $broker_fee
|
||||
*/
|
||||
public function setBrokerFee($broker_fee)
|
||||
@@ -519,7 +579,7 @@ class GetOrderResponseData extends BaseModel implements ResponseDataInterface
|
||||
}
|
||||
|
||||
/**
|
||||
* 综合服务主体加成服务费
|
||||
* 应收综合服务主体加成服务费金额
|
||||
* @return string
|
||||
*/
|
||||
public function getBrokerFee()
|
||||
@@ -528,7 +588,7 @@ class GetOrderResponseData extends BaseModel implements ResponseDataInterface
|
||||
}
|
||||
|
||||
/**
|
||||
* 余额账户支出加成服务费
|
||||
* 应收余额账户支出加成服务费金额
|
||||
* @var string $broker_real_fee
|
||||
*/
|
||||
public function setBrokerRealFee($broker_real_fee)
|
||||
@@ -537,7 +597,7 @@ class GetOrderResponseData extends BaseModel implements ResponseDataInterface
|
||||
}
|
||||
|
||||
/**
|
||||
* 余额账户支出加成服务费
|
||||
* 应收余额账户支出加成服务费金额
|
||||
* @return string
|
||||
*/
|
||||
public function getBrokerRealFee()
|
||||
@@ -546,7 +606,7 @@ class GetOrderResponseData extends BaseModel implements ResponseDataInterface
|
||||
}
|
||||
|
||||
/**
|
||||
* 抵扣账户支出加成服务费
|
||||
* 应收加成服务费抵扣金额
|
||||
* @var string $broker_deduct_fee
|
||||
*/
|
||||
public function setBrokerDeductFee($broker_deduct_fee)
|
||||
@@ -555,7 +615,7 @@ class GetOrderResponseData extends BaseModel implements ResponseDataInterface
|
||||
}
|
||||
|
||||
/**
|
||||
* 抵扣账户支出加成服务费
|
||||
* 应收加成服务费抵扣金额
|
||||
* @return string
|
||||
*/
|
||||
public function getBrokerDeductFee()
|
||||
@@ -563,6 +623,96 @@ class GetOrderResponseData extends BaseModel implements ResponseDataInterface
|
||||
return $this->broker_deduct_fee;
|
||||
}
|
||||
|
||||
/**
|
||||
* 应收用户加成服务费金额
|
||||
* @var string $user_fee
|
||||
*/
|
||||
public function setUserFee($user_fee)
|
||||
{
|
||||
$this->user_fee = $user_fee;
|
||||
}
|
||||
|
||||
/**
|
||||
* 应收用户加成服务费金额
|
||||
* @return string
|
||||
*/
|
||||
public function getUserFee()
|
||||
{
|
||||
return $this->user_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 $received_broker_real_fee
|
||||
*/
|
||||
public function setReceivedBrokerRealFee($received_broker_real_fee)
|
||||
{
|
||||
$this->received_broker_real_fee = $received_broker_real_fee;
|
||||
}
|
||||
|
||||
/**
|
||||
* 实收余额账户支出加成服务费金额
|
||||
* @return string
|
||||
*/
|
||||
public function getReceivedBrokerRealFee()
|
||||
{
|
||||
return $this->received_broker_real_fee;
|
||||
}
|
||||
|
||||
/**
|
||||
* 实收加成服务费抵扣金额
|
||||
* @var string $received_broker_deduct_fee
|
||||
*/
|
||||
public function setReceivedBrokerDeductFee($received_broker_deduct_fee)
|
||||
{
|
||||
$this->received_broker_deduct_fee = $received_broker_deduct_fee;
|
||||
}
|
||||
|
||||
/**
|
||||
* 实收加成服务费抵扣金额
|
||||
* @return string
|
||||
*/
|
||||
public function getReceivedBrokerDeductFee()
|
||||
{
|
||||
return $this->received_broker_deduct_fee;
|
||||
}
|
||||
|
||||
/**
|
||||
* 实收用户加成服务费金额
|
||||
* @var string $received_user_fee
|
||||
*/
|
||||
public function setReceivedUserFee($received_user_fee)
|
||||
{
|
||||
$this->received_user_fee = $received_user_fee;
|
||||
}
|
||||
|
||||
/**
|
||||
* 实收用户加成服务费金额
|
||||
* @return string
|
||||
*/
|
||||
public function getReceivedUserFee()
|
||||
{
|
||||
return $this->received_user_fee;
|
||||
}
|
||||
|
||||
/**
|
||||
* 订单备注
|
||||
* @var string $pay_remark
|
||||
@@ -581,24 +731,6 @@ class GetOrderResponseData extends BaseModel implements ResponseDataInterface
|
||||
return $this->pay_remark;
|
||||
}
|
||||
|
||||
/**
|
||||
* 用户加成服务费
|
||||
* @var string $user_fee
|
||||
*/
|
||||
public function setUserFee($user_fee)
|
||||
{
|
||||
$this->user_fee = $user_fee;
|
||||
}
|
||||
|
||||
/**
|
||||
* 用户加成服务费
|
||||
* @return string
|
||||
*/
|
||||
public function getUserFee()
|
||||
{
|
||||
return $this->user_fee;
|
||||
}
|
||||
|
||||
/**
|
||||
* 银行名称
|
||||
* @var string $bank_name
|
||||
@@ -618,7 +750,7 @@ class GetOrderResponseData extends BaseModel implements ResponseDataInterface
|
||||
}
|
||||
|
||||
/**
|
||||
* 项目标识
|
||||
* 业务线标识
|
||||
* @var string $project_id
|
||||
*/
|
||||
public function setProjectId($project_id)
|
||||
@@ -627,7 +759,7 @@ class GetOrderResponseData extends BaseModel implements ResponseDataInterface
|
||||
}
|
||||
|
||||
/**
|
||||
* 项目标识
|
||||
* 业务线标识
|
||||
* @return string
|
||||
*/
|
||||
public function getProjectId()
|
||||
@@ -724,4 +856,148 @@ class GetOrderResponseData extends BaseModel implements ResponseDataInterface
|
||||
{
|
||||
return $this->sys_fee;
|
||||
}
|
||||
|
||||
/**
|
||||
* 用户实收金额
|
||||
* @var string $user_real_amount
|
||||
*/
|
||||
public function setUserRealAmount($user_real_amount)
|
||||
{
|
||||
$this->user_real_amount = $user_real_amount;
|
||||
}
|
||||
|
||||
/**
|
||||
* 用户实收金额
|
||||
* @return string
|
||||
*/
|
||||
public function getUserRealAmount()
|
||||
{
|
||||
return $this->user_real_amount;
|
||||
}
|
||||
|
||||
/**
|
||||
* 缴税明细
|
||||
* @var TaxDetail $tax_detail
|
||||
*/
|
||||
public function setTaxDetail($tax_detail)
|
||||
{
|
||||
$this->tax_detail = $tax_detail;
|
||||
}
|
||||
|
||||
/**
|
||||
* 缴税明细
|
||||
* @return TaxDetail
|
||||
*/
|
||||
public function getTaxDetail()
|
||||
{
|
||||
return $this->tax_detail;
|
||||
}
|
||||
|
||||
/**
|
||||
* 实缴税费总额
|
||||
* @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 string $dealer_platform_name
|
||||
*/
|
||||
public function setDealerPlatformName($dealer_platform_name)
|
||||
{
|
||||
$this->dealer_platform_name = $dealer_platform_name;
|
||||
}
|
||||
|
||||
/**
|
||||
* 互联网平台名称
|
||||
* @return string
|
||||
*/
|
||||
public function getDealerPlatformName()
|
||||
{
|
||||
return $this->dealer_platform_name;
|
||||
}
|
||||
|
||||
/**
|
||||
* 用户名称/昵称
|
||||
* @var string $dealer_user_nickname
|
||||
*/
|
||||
public function setDealerUserNickname($dealer_user_nickname)
|
||||
{
|
||||
$this->dealer_user_nickname = $dealer_user_nickname;
|
||||
}
|
||||
|
||||
/**
|
||||
* 用户名称/昵称
|
||||
* @return string
|
||||
*/
|
||||
public function getDealerUserNickname()
|
||||
{
|
||||
return $this->dealer_user_nickname;
|
||||
}
|
||||
|
||||
/**
|
||||
* 用户唯一标识码
|
||||
* @var string $dealer_user_id
|
||||
*/
|
||||
public function setDealerUserId($dealer_user_id)
|
||||
{
|
||||
$this->dealer_user_id = $dealer_user_id;
|
||||
}
|
||||
|
||||
/**
|
||||
* 用户唯一标识码
|
||||
* @return string
|
||||
*/
|
||||
public function getDealerUserId()
|
||||
{
|
||||
return $this->dealer_user_id;
|
||||
}
|
||||
|
||||
/**
|
||||
* 用户实收金额(追缴前)
|
||||
* @var string $user_real_excluding_vat_amount
|
||||
*/
|
||||
public function setUserRealExcludingVatAmount($user_real_excluding_vat_amount)
|
||||
{
|
||||
$this->user_real_excluding_vat_amount = $user_real_excluding_vat_amount;
|
||||
}
|
||||
|
||||
/**
|
||||
* 用户实收金额(追缴前)
|
||||
* @return string
|
||||
*/
|
||||
public function getUserRealExcludingVatAmount()
|
||||
{
|
||||
return $this->user_real_excluding_vat_amount;
|
||||
}
|
||||
|
||||
/**
|
||||
* 已追缴增附税(本笔订单)
|
||||
* @var string $user_recover_tax_amount
|
||||
*/
|
||||
public function setUserRecoverTaxAmount($user_recover_tax_amount)
|
||||
{
|
||||
$this->user_recover_tax_amount = $user_recover_tax_amount;
|
||||
}
|
||||
|
||||
/**
|
||||
* 已追缴增附税(本笔订单)
|
||||
* @return string
|
||||
*/
|
||||
public function getUserRecoverTaxAmount()
|
||||
{
|
||||
return $this->user_recover_tax_amount;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -106,30 +106,50 @@ class NotifyOrderData extends BaseModel
|
||||
*/
|
||||
protected $finished_time;
|
||||
/**
|
||||
* 综合服务主体加成服务费
|
||||
* 应收综合服务主体加成服务费金额
|
||||
* @var string
|
||||
*/
|
||||
protected $broker_fee;
|
||||
/**
|
||||
* 余额账户支出加成服务费
|
||||
* 应收余额账户支出加成服务费金额
|
||||
* @var string
|
||||
*/
|
||||
protected $broker_real_fee;
|
||||
/**
|
||||
* 抵扣账户支出加成服务费
|
||||
* 应收加成服务费抵扣金额
|
||||
* @var string
|
||||
*/
|
||||
protected $broker_deduct_fee;
|
||||
/**
|
||||
* 应收用户加成服务费金额
|
||||
* @var string
|
||||
*/
|
||||
protected $user_fee;
|
||||
/**
|
||||
* 实收综合服务主体加成服务费金额
|
||||
* @var string
|
||||
*/
|
||||
protected $received_broker_fee;
|
||||
/**
|
||||
* 实收余额账户支出加成服务费金额
|
||||
* @var string
|
||||
*/
|
||||
protected $received_broker_real_fee;
|
||||
/**
|
||||
* 实收加成服务费抵扣金额
|
||||
* @var string
|
||||
*/
|
||||
protected $received_broker_deduct_fee;
|
||||
/**
|
||||
* 实收用户加成服务费金额
|
||||
* @var string
|
||||
*/
|
||||
protected $received_user_fee;
|
||||
/**
|
||||
* 订单备注
|
||||
* @var string
|
||||
*/
|
||||
protected $pay_remark;
|
||||
/**
|
||||
* 用户加成服务费
|
||||
* @var string
|
||||
*/
|
||||
protected $user_fee;
|
||||
/**
|
||||
* 银行名称
|
||||
* @var string
|
||||
@@ -145,6 +165,51 @@ class NotifyOrderData extends BaseModel
|
||||
* @var string
|
||||
*/
|
||||
protected $user_id;
|
||||
/**
|
||||
* 用户实收金额
|
||||
* @var string
|
||||
*/
|
||||
protected $user_real_amount;
|
||||
/**
|
||||
* 缴税明细
|
||||
* @var TaxDetail
|
||||
*/
|
||||
protected $tax_detail;
|
||||
/**
|
||||
* 互联网平台名称
|
||||
* @var string
|
||||
*/
|
||||
protected $dealer_platform_name;
|
||||
/**
|
||||
* 用户名称/昵称
|
||||
* @var string
|
||||
*/
|
||||
protected $dealer_user_nickname;
|
||||
/**
|
||||
* 用户唯一标识码
|
||||
* @var string
|
||||
*/
|
||||
protected $dealer_user_id;
|
||||
/**
|
||||
* 预扣税费总额
|
||||
* @var string
|
||||
*/
|
||||
protected $tax;
|
||||
/**
|
||||
* 实缴税费总额
|
||||
* @var string
|
||||
*/
|
||||
protected $received_tax_amount;
|
||||
/**
|
||||
* 用户实收金额(追缴前)
|
||||
* @var string
|
||||
*/
|
||||
protected $user_real_excluding_vat_amount;
|
||||
/**
|
||||
* 已追缴增附税(本笔订单)
|
||||
* @var string
|
||||
*/
|
||||
protected $user_recover_tax_amount;
|
||||
|
||||
/**
|
||||
* 平台企业订单号
|
||||
@@ -489,7 +554,7 @@ class NotifyOrderData extends BaseModel
|
||||
}
|
||||
|
||||
/**
|
||||
* 综合服务主体加成服务费
|
||||
* 应收综合服务主体加成服务费金额
|
||||
* @var string $broker_fee
|
||||
*/
|
||||
public function setBrokerFee($broker_fee)
|
||||
@@ -498,7 +563,7 @@ class NotifyOrderData extends BaseModel
|
||||
}
|
||||
|
||||
/**
|
||||
* 综合服务主体加成服务费
|
||||
* 应收综合服务主体加成服务费金额
|
||||
* @return string
|
||||
*/
|
||||
public function getBrokerFee()
|
||||
@@ -507,7 +572,7 @@ class NotifyOrderData extends BaseModel
|
||||
}
|
||||
|
||||
/**
|
||||
* 余额账户支出加成服务费
|
||||
* 应收余额账户支出加成服务费金额
|
||||
* @var string $broker_real_fee
|
||||
*/
|
||||
public function setBrokerRealFee($broker_real_fee)
|
||||
@@ -516,7 +581,7 @@ class NotifyOrderData extends BaseModel
|
||||
}
|
||||
|
||||
/**
|
||||
* 余额账户支出加成服务费
|
||||
* 应收余额账户支出加成服务费金额
|
||||
* @return string
|
||||
*/
|
||||
public function getBrokerRealFee()
|
||||
@@ -525,7 +590,7 @@ class NotifyOrderData extends BaseModel
|
||||
}
|
||||
|
||||
/**
|
||||
* 抵扣账户支出加成服务费
|
||||
* 应收加成服务费抵扣金额
|
||||
* @var string $broker_deduct_fee
|
||||
*/
|
||||
public function setBrokerDeductFee($broker_deduct_fee)
|
||||
@@ -534,7 +599,7 @@ class NotifyOrderData extends BaseModel
|
||||
}
|
||||
|
||||
/**
|
||||
* 抵扣账户支出加成服务费
|
||||
* 应收加成服务费抵扣金额
|
||||
* @return string
|
||||
*/
|
||||
public function getBrokerDeductFee()
|
||||
@@ -542,6 +607,96 @@ class NotifyOrderData extends BaseModel
|
||||
return $this->broker_deduct_fee;
|
||||
}
|
||||
|
||||
/**
|
||||
* 应收用户加成服务费金额
|
||||
* @var string $user_fee
|
||||
*/
|
||||
public function setUserFee($user_fee)
|
||||
{
|
||||
$this->user_fee = $user_fee;
|
||||
}
|
||||
|
||||
/**
|
||||
* 应收用户加成服务费金额
|
||||
* @return string
|
||||
*/
|
||||
public function getUserFee()
|
||||
{
|
||||
return $this->user_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 $received_broker_real_fee
|
||||
*/
|
||||
public function setReceivedBrokerRealFee($received_broker_real_fee)
|
||||
{
|
||||
$this->received_broker_real_fee = $received_broker_real_fee;
|
||||
}
|
||||
|
||||
/**
|
||||
* 实收余额账户支出加成服务费金额
|
||||
* @return string
|
||||
*/
|
||||
public function getReceivedBrokerRealFee()
|
||||
{
|
||||
return $this->received_broker_real_fee;
|
||||
}
|
||||
|
||||
/**
|
||||
* 实收加成服务费抵扣金额
|
||||
* @var string $received_broker_deduct_fee
|
||||
*/
|
||||
public function setReceivedBrokerDeductFee($received_broker_deduct_fee)
|
||||
{
|
||||
$this->received_broker_deduct_fee = $received_broker_deduct_fee;
|
||||
}
|
||||
|
||||
/**
|
||||
* 实收加成服务费抵扣金额
|
||||
* @return string
|
||||
*/
|
||||
public function getReceivedBrokerDeductFee()
|
||||
{
|
||||
return $this->received_broker_deduct_fee;
|
||||
}
|
||||
|
||||
/**
|
||||
* 实收用户加成服务费金额
|
||||
* @var string $received_user_fee
|
||||
*/
|
||||
public function setReceivedUserFee($received_user_fee)
|
||||
{
|
||||
$this->received_user_fee = $received_user_fee;
|
||||
}
|
||||
|
||||
/**
|
||||
* 实收用户加成服务费金额
|
||||
* @return string
|
||||
*/
|
||||
public function getReceivedUserFee()
|
||||
{
|
||||
return $this->received_user_fee;
|
||||
}
|
||||
|
||||
/**
|
||||
* 订单备注
|
||||
* @var string $pay_remark
|
||||
@@ -560,24 +715,6 @@ class NotifyOrderData extends BaseModel
|
||||
return $this->pay_remark;
|
||||
}
|
||||
|
||||
/**
|
||||
* 用户加成服务费
|
||||
* @var string $user_fee
|
||||
*/
|
||||
public function setUserFee($user_fee)
|
||||
{
|
||||
$this->user_fee = $user_fee;
|
||||
}
|
||||
|
||||
/**
|
||||
* 用户加成服务费
|
||||
* @return string
|
||||
*/
|
||||
public function getUserFee()
|
||||
{
|
||||
return $this->user_fee;
|
||||
}
|
||||
|
||||
/**
|
||||
* 银行名称
|
||||
* @var string $bank_name
|
||||
@@ -631,4 +768,166 @@ class NotifyOrderData extends BaseModel
|
||||
{
|
||||
return $this->user_id;
|
||||
}
|
||||
|
||||
/**
|
||||
* 用户实收金额
|
||||
* @var string $user_real_amount
|
||||
*/
|
||||
public function setUserRealAmount($user_real_amount)
|
||||
{
|
||||
$this->user_real_amount = $user_real_amount;
|
||||
}
|
||||
|
||||
/**
|
||||
* 用户实收金额
|
||||
* @return string
|
||||
*/
|
||||
public function getUserRealAmount()
|
||||
{
|
||||
return $this->user_real_amount;
|
||||
}
|
||||
|
||||
/**
|
||||
* 缴税明细
|
||||
* @var TaxDetail $tax_detail
|
||||
*/
|
||||
public function setTaxDetail($tax_detail)
|
||||
{
|
||||
$this->tax_detail = $tax_detail;
|
||||
}
|
||||
|
||||
/**
|
||||
* 缴税明细
|
||||
* @return TaxDetail
|
||||
*/
|
||||
public function getTaxDetail()
|
||||
{
|
||||
return $this->tax_detail;
|
||||
}
|
||||
|
||||
/**
|
||||
* 互联网平台名称
|
||||
* @var string $dealer_platform_name
|
||||
*/
|
||||
public function setDealerPlatformName($dealer_platform_name)
|
||||
{
|
||||
$this->dealer_platform_name = $dealer_platform_name;
|
||||
}
|
||||
|
||||
/**
|
||||
* 互联网平台名称
|
||||
* @return string
|
||||
*/
|
||||
public function getDealerPlatformName()
|
||||
{
|
||||
return $this->dealer_platform_name;
|
||||
}
|
||||
|
||||
/**
|
||||
* 用户名称/昵称
|
||||
* @var string $dealer_user_nickname
|
||||
*/
|
||||
public function setDealerUserNickname($dealer_user_nickname)
|
||||
{
|
||||
$this->dealer_user_nickname = $dealer_user_nickname;
|
||||
}
|
||||
|
||||
/**
|
||||
* 用户名称/昵称
|
||||
* @return string
|
||||
*/
|
||||
public function getDealerUserNickname()
|
||||
{
|
||||
return $this->dealer_user_nickname;
|
||||
}
|
||||
|
||||
/**
|
||||
* 用户唯一标识码
|
||||
* @var string $dealer_user_id
|
||||
*/
|
||||
public function setDealerUserId($dealer_user_id)
|
||||
{
|
||||
$this->dealer_user_id = $dealer_user_id;
|
||||
}
|
||||
|
||||
/**
|
||||
* 用户唯一标识码
|
||||
* @return string
|
||||
*/
|
||||
public function getDealerUserId()
|
||||
{
|
||||
return $this->dealer_user_id;
|
||||
}
|
||||
|
||||
/**
|
||||
* 预扣税费总额
|
||||
* @var string $tax
|
||||
*/
|
||||
public function setTax($tax)
|
||||
{
|
||||
$this->tax = $tax;
|
||||
}
|
||||
|
||||
/**
|
||||
* 预扣税费总额
|
||||
* @return string
|
||||
*/
|
||||
public function getTax()
|
||||
{
|
||||
return $this->tax;
|
||||
}
|
||||
|
||||
/**
|
||||
* 实缴税费总额
|
||||
* @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 string $user_real_excluding_vat_amount
|
||||
*/
|
||||
public function setUserRealExcludingVatAmount($user_real_excluding_vat_amount)
|
||||
{
|
||||
$this->user_real_excluding_vat_amount = $user_real_excluding_vat_amount;
|
||||
}
|
||||
|
||||
/**
|
||||
* 用户实收金额(追缴前)
|
||||
* @return string
|
||||
*/
|
||||
public function getUserRealExcludingVatAmount()
|
||||
{
|
||||
return $this->user_real_excluding_vat_amount;
|
||||
}
|
||||
|
||||
/**
|
||||
* 已追缴增附税(本笔订单)
|
||||
* @var string $user_recover_tax_amount
|
||||
*/
|
||||
public function setUserRecoverTaxAmount($user_recover_tax_amount)
|
||||
{
|
||||
$this->user_recover_tax_amount = $user_recover_tax_amount;
|
||||
}
|
||||
|
||||
/**
|
||||
* 已追缴增附税(本笔订单)
|
||||
* @return string
|
||||
*/
|
||||
public function getUserRecoverTaxAmount()
|
||||
{
|
||||
return $this->user_recover_tax_amount;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -106,30 +106,50 @@ class QueryBatchOrderInfo extends BaseModel
|
||||
*/
|
||||
protected $finished_time;
|
||||
/**
|
||||
* 综合服务主体加成服务费
|
||||
* 应收综合服务主体加成服务费金额
|
||||
* @var string
|
||||
*/
|
||||
protected $broker_fee;
|
||||
/**
|
||||
* 余额账户支出加成服务费
|
||||
* 应收余额账户支出加成服务费金额
|
||||
* @var string
|
||||
*/
|
||||
protected $broker_real_fee;
|
||||
/**
|
||||
* 加成服务费抵扣金额
|
||||
* 应收加成服务费抵扣金额
|
||||
* @var string
|
||||
*/
|
||||
protected $broker_deduct_fee;
|
||||
/**
|
||||
* 应收用户加成服务费金额
|
||||
* @var string
|
||||
*/
|
||||
protected $user_fee;
|
||||
/**
|
||||
* 实收综合服务主体加成服务费金额
|
||||
* @var string
|
||||
*/
|
||||
protected $received_broker_fee;
|
||||
/**
|
||||
* 实收余额账户支出加成服务费金额
|
||||
* @var string
|
||||
*/
|
||||
protected $received_broker_real_fee;
|
||||
/**
|
||||
* 实收加成服务费抵扣金额
|
||||
* @var string
|
||||
*/
|
||||
protected $received_broker_deduct_fee;
|
||||
/**
|
||||
* 实收用户加成服务费金额
|
||||
* @var string
|
||||
*/
|
||||
protected $received_user_fee;
|
||||
/**
|
||||
* 订单备注
|
||||
* @var string
|
||||
*/
|
||||
protected $pay_remark;
|
||||
/**
|
||||
* 用户加成服务费
|
||||
* @var string
|
||||
*/
|
||||
protected $user_fee;
|
||||
/**
|
||||
* 银行名称
|
||||
* @var string
|
||||
@@ -140,6 +160,31 @@ class QueryBatchOrderInfo extends BaseModel
|
||||
* @var string
|
||||
*/
|
||||
protected $project_id;
|
||||
/**
|
||||
* 互联网平台名称
|
||||
* @var string
|
||||
*/
|
||||
protected $dealer_platform_name;
|
||||
/**
|
||||
* 用户名称/昵称
|
||||
* @var string
|
||||
*/
|
||||
protected $dealer_user_nickname;
|
||||
/**
|
||||
* 用户唯一标识码
|
||||
* @var string
|
||||
*/
|
||||
protected $dealer_user_id;
|
||||
/**
|
||||
* 预扣个税税率
|
||||
* @var string
|
||||
*/
|
||||
protected $personal_tax_rate;
|
||||
/**
|
||||
* 预扣个税速算扣除数
|
||||
* @var string
|
||||
*/
|
||||
protected $deduct_tax;
|
||||
|
||||
/**
|
||||
* 平台企业订单号
|
||||
@@ -484,7 +529,7 @@ class QueryBatchOrderInfo extends BaseModel
|
||||
}
|
||||
|
||||
/**
|
||||
* 综合服务主体加成服务费
|
||||
* 应收综合服务主体加成服务费金额
|
||||
* @var string $broker_fee
|
||||
*/
|
||||
public function setBrokerFee($broker_fee)
|
||||
@@ -493,7 +538,7 @@ class QueryBatchOrderInfo extends BaseModel
|
||||
}
|
||||
|
||||
/**
|
||||
* 综合服务主体加成服务费
|
||||
* 应收综合服务主体加成服务费金额
|
||||
* @return string
|
||||
*/
|
||||
public function getBrokerFee()
|
||||
@@ -502,7 +547,7 @@ class QueryBatchOrderInfo extends BaseModel
|
||||
}
|
||||
|
||||
/**
|
||||
* 余额账户支出加成服务费
|
||||
* 应收余额账户支出加成服务费金额
|
||||
* @var string $broker_real_fee
|
||||
*/
|
||||
public function setBrokerRealFee($broker_real_fee)
|
||||
@@ -511,7 +556,7 @@ class QueryBatchOrderInfo extends BaseModel
|
||||
}
|
||||
|
||||
/**
|
||||
* 余额账户支出加成服务费
|
||||
* 应收余额账户支出加成服务费金额
|
||||
* @return string
|
||||
*/
|
||||
public function getBrokerRealFee()
|
||||
@@ -520,7 +565,7 @@ class QueryBatchOrderInfo extends BaseModel
|
||||
}
|
||||
|
||||
/**
|
||||
* 加成服务费抵扣金额
|
||||
* 应收加成服务费抵扣金额
|
||||
* @var string $broker_deduct_fee
|
||||
*/
|
||||
public function setBrokerDeductFee($broker_deduct_fee)
|
||||
@@ -529,7 +574,7 @@ class QueryBatchOrderInfo extends BaseModel
|
||||
}
|
||||
|
||||
/**
|
||||
* 加成服务费抵扣金额
|
||||
* 应收加成服务费抵扣金额
|
||||
* @return string
|
||||
*/
|
||||
public function getBrokerDeductFee()
|
||||
@@ -537,6 +582,96 @@ class QueryBatchOrderInfo extends BaseModel
|
||||
return $this->broker_deduct_fee;
|
||||
}
|
||||
|
||||
/**
|
||||
* 应收用户加成服务费金额
|
||||
* @var string $user_fee
|
||||
*/
|
||||
public function setUserFee($user_fee)
|
||||
{
|
||||
$this->user_fee = $user_fee;
|
||||
}
|
||||
|
||||
/**
|
||||
* 应收用户加成服务费金额
|
||||
* @return string
|
||||
*/
|
||||
public function getUserFee()
|
||||
{
|
||||
return $this->user_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 $received_broker_real_fee
|
||||
*/
|
||||
public function setReceivedBrokerRealFee($received_broker_real_fee)
|
||||
{
|
||||
$this->received_broker_real_fee = $received_broker_real_fee;
|
||||
}
|
||||
|
||||
/**
|
||||
* 实收余额账户支出加成服务费金额
|
||||
* @return string
|
||||
*/
|
||||
public function getReceivedBrokerRealFee()
|
||||
{
|
||||
return $this->received_broker_real_fee;
|
||||
}
|
||||
|
||||
/**
|
||||
* 实收加成服务费抵扣金额
|
||||
* @var string $received_broker_deduct_fee
|
||||
*/
|
||||
public function setReceivedBrokerDeductFee($received_broker_deduct_fee)
|
||||
{
|
||||
$this->received_broker_deduct_fee = $received_broker_deduct_fee;
|
||||
}
|
||||
|
||||
/**
|
||||
* 实收加成服务费抵扣金额
|
||||
* @return string
|
||||
*/
|
||||
public function getReceivedBrokerDeductFee()
|
||||
{
|
||||
return $this->received_broker_deduct_fee;
|
||||
}
|
||||
|
||||
/**
|
||||
* 实收用户加成服务费金额
|
||||
* @var string $received_user_fee
|
||||
*/
|
||||
public function setReceivedUserFee($received_user_fee)
|
||||
{
|
||||
$this->received_user_fee = $received_user_fee;
|
||||
}
|
||||
|
||||
/**
|
||||
* 实收用户加成服务费金额
|
||||
* @return string
|
||||
*/
|
||||
public function getReceivedUserFee()
|
||||
{
|
||||
return $this->received_user_fee;
|
||||
}
|
||||
|
||||
/**
|
||||
* 订单备注
|
||||
* @var string $pay_remark
|
||||
@@ -555,24 +690,6 @@ class QueryBatchOrderInfo extends BaseModel
|
||||
return $this->pay_remark;
|
||||
}
|
||||
|
||||
/**
|
||||
* 用户加成服务费
|
||||
* @var string $user_fee
|
||||
*/
|
||||
public function setUserFee($user_fee)
|
||||
{
|
||||
$this->user_fee = $user_fee;
|
||||
}
|
||||
|
||||
/**
|
||||
* 用户加成服务费
|
||||
* @return string
|
||||
*/
|
||||
public function getUserFee()
|
||||
{
|
||||
return $this->user_fee;
|
||||
}
|
||||
|
||||
/**
|
||||
* 银行名称
|
||||
* @var string $bank_name
|
||||
@@ -608,4 +725,94 @@ class QueryBatchOrderInfo extends BaseModel
|
||||
{
|
||||
return $this->project_id;
|
||||
}
|
||||
|
||||
/**
|
||||
* 互联网平台名称
|
||||
* @var string $dealer_platform_name
|
||||
*/
|
||||
public function setDealerPlatformName($dealer_platform_name)
|
||||
{
|
||||
$this->dealer_platform_name = $dealer_platform_name;
|
||||
}
|
||||
|
||||
/**
|
||||
* 互联网平台名称
|
||||
* @return string
|
||||
*/
|
||||
public function getDealerPlatformName()
|
||||
{
|
||||
return $this->dealer_platform_name;
|
||||
}
|
||||
|
||||
/**
|
||||
* 用户名称/昵称
|
||||
* @var string $dealer_user_nickname
|
||||
*/
|
||||
public function setDealerUserNickname($dealer_user_nickname)
|
||||
{
|
||||
$this->dealer_user_nickname = $dealer_user_nickname;
|
||||
}
|
||||
|
||||
/**
|
||||
* 用户名称/昵称
|
||||
* @return string
|
||||
*/
|
||||
public function getDealerUserNickname()
|
||||
{
|
||||
return $this->dealer_user_nickname;
|
||||
}
|
||||
|
||||
/**
|
||||
* 用户唯一标识码
|
||||
* @var string $dealer_user_id
|
||||
*/
|
||||
public function setDealerUserId($dealer_user_id)
|
||||
{
|
||||
$this->dealer_user_id = $dealer_user_id;
|
||||
}
|
||||
|
||||
/**
|
||||
* 用户唯一标识码
|
||||
* @return string
|
||||
*/
|
||||
public function getDealerUserId()
|
||||
{
|
||||
return $this->dealer_user_id;
|
||||
}
|
||||
|
||||
/**
|
||||
* 预扣个税税率
|
||||
* @var string $personal_tax_rate
|
||||
*/
|
||||
public function setPersonalTaxRate($personal_tax_rate)
|
||||
{
|
||||
$this->personal_tax_rate = $personal_tax_rate;
|
||||
}
|
||||
|
||||
/**
|
||||
* 预扣个税税率
|
||||
* @return string
|
||||
*/
|
||||
public function getPersonalTaxRate()
|
||||
{
|
||||
return $this->personal_tax_rate;
|
||||
}
|
||||
|
||||
/**
|
||||
* 预扣个税速算扣除数
|
||||
* @var string $deduct_tax
|
||||
*/
|
||||
public function setDeductTax($deduct_tax)
|
||||
{
|
||||
$this->deduct_tax = $deduct_tax;
|
||||
}
|
||||
|
||||
/**
|
||||
* 预扣个税速算扣除数
|
||||
* @return string
|
||||
*/
|
||||
public function getDeductTax()
|
||||
{
|
||||
return $this->deduct_tax;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user