URL | http://test.birdsystem.com/client/customs-category | ||
---|---|---|---|
接口功能 | 查询海关分类信息 | ||
支持格式 | JSON | 开发人员 | |
请求方式 | GET | 发布日期 |
海关分类的查询接口。每个产品(鸟系统正式产品或者代理专线订单产品)必须填写海关分类ID
请求示例
http://test.birdsystem.com/client/customs-category/7
入参:系统海关分类ID(直接接在url后)
返回示例
{
...
Code Block | ||||
---|---|---|---|---|
| ||||
{ "total": |
...
1, |
...
"data": |
...
{
...
[ { "id": |
...
"0000000007", |
...
"parent_id": |
...
"0", |
...
"name": |
...
" |
...
Consumer Electronics", "name_chinese": |
...
"消费性电子产品", |
...
"code": |
...
"G", |
...
"customs_category_full_name": |
...
" |
...
Consumer Electronics", "customs_category_full_name_chinese": |
...
"消费性电子产品", |
...
"customs_category_full_code": |
...
"G", |
...
"level": |
...
"1", |
...
"max_customs_value": |
...
"0.00", |
...
"min_customs_value": |
...
"0.00", |
...
"lft": |
...
"1001", |
...
"rgt": |
...
"1248", |
...
"tax": |
...
"0.00", |
...
"type": |
...
null, |
...
"primary_keys": |
...
"id"
]
}
],
...
[ "id" ] } ], "success": |
...
true, |
...
"moduleName": |
...
"client" |
...
} |
返回字段说明
字段 | 注释 | 类型 |
---|---|---|
id | 系统海关分类ID | INT(10) |
name | 名称 | VARCHAR |
name_chinese | 中文名称 | VARCHAR |
customs_category_full_name | 完整的海关分类名称 | VARCHAR |
customs_category_full_name_chinese | 完整的海关分类中文名称 | VARCHAR |
customs_category_full_code | 代码 | VARCHAR |
level | 海关分类级别 | INT(10) |
max_customs_value | 最大申报价值(美元) | DECIMAL(10,2) |
min_customs_value | 最小申报价值(美元) | DECIMAL(10,2) |
tax | 税率 | DECIMAL(10,2) |