shop-php/extend/taobao/domain/TradeConfirmFee.php
2024-01-26 09:39:36 +08:00

25 lines
626 B
PHP
Executable File
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<?php
/**
* 获取到的交易确认收货费用
* @author auto create
*/
class TradeConfirmFee
{
/**
* 确认收货的金额(不包含邮费)。精确到2位小数;单位:元。如:200.07,表示:200元7分
**/
public $confirm_fee;
/**
* 需确认收货的邮费当不是最后一笔收货或者没有邮费时是0.00。精确到2位小数;单位:元。如:200.07,表示:200元7分
**/
public $confirm_post_fee;
/**
* 是否是最后一笔订单只对子订单有效当其他子订单都是交易完成时返回true否则false
**/
public $is_last_order;
}
?>