POST api/TMSApp/FreightPlan/BatchSaveFreightPlan_old?corpID={corpID}

批量分拆货运计划

Request Information

URI Parameters

NameDescriptionTypeAdditional information
corpID

用户所属公司ID

integer

Required

Body Parameters

批量分拆的货运计划集合

Collection of DFreightPlanBase
NameDescriptionTypeAdditional information
PlanID

货运计划ID

integer

None.

OrderID

所属订单ID

integer

None.

StartTime

计划开始时间

date

None.

TPValue

计划运输量

decimal number

None.

ArriveTime

到货截止时间

date

None.

fpAreaList

调运计划区域

Collection of FreightPlanArea

None.

Remark

备注

string

None.

Request Formats

application/json, text/json

Sample:
[
  {
    "PlanID": 1,
    "OrderID": 2,
    "StartTime": "2024-04-19T17:29:56.0610513+08:00",
    "TPValue": 1.0,
    "ArriveTime": "2024-04-19T17:29:56.0610513+08:00",
    "fpAreaList": [
      {
        "OrderAreaID": 1,
        "PlanAreaType": 2
      },
      {
        "OrderAreaID": 1,
        "PlanAreaType": 2
      }
    ],
    "Remark": "sample string 5"
  },
  {
    "PlanID": 1,
    "OrderID": 2,
    "StartTime": "2024-04-19T17:29:56.0610513+08:00",
    "TPValue": 1.0,
    "ArriveTime": "2024-04-19T17:29:56.0610513+08:00",
    "fpAreaList": [
      {
        "OrderAreaID": 1,
        "PlanAreaType": 2
      },
      {
        "OrderAreaID": 1,
        "PlanAreaType": 2
      }
    ],
    "Remark": "sample string 5"
  }
]

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"
}