GET api/TMSApp/Corp/GetUserWithoutCorpList?pageIndex={pageIndex}&pageSize={pageSize}&keyWord={keyWord}&corptype={corptype}&corpID={corpID}

获取用户公司的没有合作的公司

Request Information

URI Parameters

NameDescriptionTypeAdditional information
pageIndex

分页,从0开始

integer

Required

pageSize

每页显示多少项

integer

Required

keyWord

搜索关键词

string

Required

corptype

公司类型,2(运输单位),4(发货单位),8(收货单位),-1(全部)

integer

Required

corpID

用户所属公司ID

integer

Required

Body Parameters

None.

Response Information

Resource Description

获取用户公司的没有合作的公司

MsgBaseApiPageOfListOfCorp
NameDescriptionTypeAdditional information
Status

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

integer

None.

Msg

返回消息

string

None.

Data

返回数据内容,默认为空

Collection of Corp

None.

Response Formats

application/json, text/json

Sample:
{
  "Status": 1,
  "Msg": "sample string 2",
  "Data": [
    {
      "id": 1,
      "corp_short_name": "sample string 2",
      "type": 3,
      "typeStr": "1,2,",
      "address": "sample string 5",
      "linkman": "sample string 6",
      "mobile": "sample string 7"
    },
    {
      "id": 1,
      "corp_short_name": "sample string 2",
      "type": 3,
      "typeStr": "1,2,",
      "address": "sample string 5",
      "linkman": "sample string 6",
      "mobile": "sample string 7"
    }
  ]
}