POST api/TMSApp/FreightPlan/UpdateFreightPlan?planID={planID}&TPValue={TPValue}&corpID={corpID}&Remark={Remark}

修改编辑货运计划

Request Information

URI Parameters

NameDescriptionTypeAdditional information
planID

要修改的货运计划的ID

integer

Required

TPValue

修改货运计划的计划量

decimal number

Required

corpID

用户所属公司ID

integer

Required

Remark

备注

string

Required

Body Parameters

调运计划收发货区域

Collection of FreightPlanArea
NameDescriptionTypeAdditional information
OrderAreaID

订单区域外键

integer

None.

PlanAreaType

收发货区域类型:1:收货区域;2:发货区域

integer

None.

Request Formats

application/json, text/json

Sample:
[
  {
    "OrderAreaID": 1,
    "PlanAreaType": 2
  },
  {
    "OrderAreaID": 1,
    "PlanAreaType": 2
  }
]

Response Information

Resource Description

修改编辑货运计划

MsgBaseApiPageOfString
NameDescriptionTypeAdditional information
Status

返回状态0:失败,1:成功

integer

None.

Msg

返回消息

string

None.

Data

返回数据内容,默认为空

string

None.

Response Formats

application/json, text/json

Sample:
{
  "Status": 1,
  "Msg": "sample string 2",
  "Data": "sample string 3"
}