版本比较

标识

  • 该行被添加。
  • 该行被删除。
  • 格式已经改变。

...

代码块
languagejava
{
    "code": 200,
    "message": "success",
    "data": [
      {
        "channelName": "DHL快递服务",
        "channelId": 1001,
        "channelCode": "DHL001",
        "chargeWeight": 15.50,
        "totalWeightDeclared": 15.50,
        "totalVolumeDeclared": 0.125,
        "basicRate": "705.25USD",
        "additionalCosts": "25.00USD",
        "basicRateDetailId": 50001,
        "valueAddedTax": "0USD",
        "valueAddedTaxId": null,
        "dutyFree": "0USD",
        "insuranceFee": "0USD",
        "etdDate": "2024-12-05T10:00:00.000Z",
        "totalAmount": "730.25USD",
        "totalAmountSort": 730.25,
        "newSurchargeFee": "0USD",
        "fuelSurcharge": "25.00USD",
        "securitySurcharge": "0USD",
        "otherSurcharge": "0USD",
        "residentialSurcharge": "0USD",
        "batterySurcharge": "0USD",
        "weightPrice": 45.50,
        "orderPride": 120.00
        
      {
        "channelName": "UPS标准服务",
        "channelId": 1002,
        "channelCode": "UPS001",
        "chargeWeight": 15.50,
        "totalWeightDeclared": 15.50,
        "totalVolumeDeclared": 0.125,
        "basicRate": "592.10USD",
        "additionalCosts": "15.00USD",
        "valueAddedTax": "0USD",
        "dutyFree": "0USD",
        "insuranceFee": "0USD",
        "etdDate": "2024-12-06 14:00:00",
        "totalAmount": "607.10USD",
        "totalAmountSort": 607.10,
        "newSurchargeFee": "0USD",
        "fuelSurcharge": "15.00USD",
        "securitySurcharge": "0USD",
        "otherSurcharge": "0USD",
        "residentialSurcharge": "0USD",
        "batterySurcharge": "0USD",
        "weightPrice": 38.20,
        "orderPride": 95.00,
        "lineHaulType": 1,
        "feeDetailList": [
				{
					"amount": 11,
					"currency": "USD",
					"feeName": "测试一下AAAAA",
					"type": 100,
					"validityEnd" : "",
					"validityStart" : "2025-10-01",
					"voyageStart" : "1",
					"voyageEnd" : "10",
				},
				{
					"amount": 350,
					"currency": "USD",
					"feeName": "报关费",
					"type": 103
				},
				{
					"amount": 20,
					"currency": "USD",
					"feeName": "超重附加费",
					"type": 106
				}
			],
      }
    ]
  }

...

字段名类型描述
channelNameString服务名称
channelIdLong渠道ID
channelCodeString渠道代码
totalWeightDeclaredBigDecimal总重量
totalVolumeDeclaredBigDecimal总体积
chargeWeightBigDecilam计费重
basicRateString基本运费总计(含币种)
additionalCostsString额外费用总计(含币种)(附加费+关税+增值税)
valueAddedTaxString增值税总计(含币种)
dutyFreeString关税总计(含币种)
insuranceFeeString保险费总计(含币种)
totalAmountString总价总计(含币种)
totalAmountSortBigDecimal总价值总计
newSurchargeFeeString偏远地区附加费总计
fuelSurchargeString燃油附加费总计
securitySurcharge
安全管理费总计
otherSurcharge
其他附加费总计
residentialSurcharge
住宅地址附加费总计
batterySurcharge
电池附加费总计
weightPriceBigDecimal重量单价
orderPrideBigDecimal单票价格
lineHaulTypeInteger干线运输类型1-海运 2-空运

maxTransitTime

Integer服务最大时效
minTransitTimeInteger服务最小时效

preciseTransitTime

Integer服务精确时效
feeDetailListList费用明细列表
feeDetailList[].amountBigDecimal金额
feeDetailList[].feeNameString费用名称
feeDetailList[].currencyString币种
feeDetailList[].validityStartString有效期开始时间
feeDetailList[].validityEndString有效期截止时间
feeDetailList[].voyageStartInteger
航程开始
feeDetailList[].voyageEndInteger
航程结束
feeDetailList[].type费用类型

4:基本运费

6:关税

7:增值税


100:偏远地区附加费

101:燃油附加费

102:安全管理费

103:其他附加费

104:住宅地址附加费

105:电池附加费

106:自定义附加费






















...