GET api/localtravel/additionfee/list

获取配送费用列表

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

获取配送费用列表

ReturnResultOfListOfLocalTravelAdditionalFeeContract
NameDescriptionTypeAdditional information
data

Collection of LocalTravelAdditionalFeeContract

None.

code

状态码:100成功,其他自定义

integer

None.

message

提示消息

string

None.

Response Formats

application/json, text/json

Sample:
{
  "data": [
    {
      "from": 1.0,
      "to": 2.0,
      "fee": 3.0
    },
    {
      "from": 1.0,
      "to": 2.0,
      "fee": 3.0
    }
  ],
  "code": 1,
  "message": "sample string 2"
}