2024-09-29 15:43:18 +08:00

40 lines
1.1 KiB
PHP
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 TopFee
{
/**
* 增费输入0.00-999.99(最多包含两位小数) 不能为空不输入运费时必须输入0
**/
public $add_fee;
/**
* 增费标准当valuation(记价方式)为0时输入1-9999范围内的整数
**/
public $add_standard;
/**
* 邮费子项涉及的地区,多个地区用逗号连接数量串;可以用taobao.areas.get接口获取.或者参考:http://www.stats.gov.cn/tjbz/xzqhdm/t20080215_402462675.htm 例 (110000,310000,320000,330000).就代表邮费子项涉 及(北京,上海,江苏,浙江)四个地区.填写时要注意对照地区代码值,如果填入错误地区代码,将会出现错误信息.
**/
public $destination;
/**
* 可选值post:平邮; cod:货到付款; ems:EMS; express:快递公司
**/
public $service_type;
/**
* 首费输入0.01-999.99(最多包含两位小数) 不能为空也不能为0
**/
public $start_fee;
/**
* 首费标准当valuation(记价方式)为0时输入1-9999范围内的整数
**/
public $start_standard;
}
?>