POST api/TencentChufang/queryDrugStock

查询药店库存

请求的信息

URI参数

None.

Body参数

queryDrugStockCondition
名称描述类型其它信息
drugStoreId

药店id

string

None.

drugInnerCodeList

编码

Collection of string

None.

请求格式

application/json, text/json

Sample:
{
  "drugStoreId": "sample string 1",
  "drugInnerCodeList": [
    "sample string 1",
    "sample string 2",
    "sample string 3"
  ]
}

application/x-www-form-urlencoded

Sample:

Sample not available.

响应信息

资源描述

CustomJsonResultOfqueryDrugStockResult
名称描述类型其它信息
Content

queryDrugStockResult

None.

响应格式

application/json, text/json

Sample:
{
  "content": {
    "$id": "2",
    "code": 1,
    "message": "sample string 2",
    "data": {
      "$id": "3",
      "drugStoreId": "sample string 1",
      "stockInfo": [
        {
          "$id": "4",
          "drugInnerCode": "sample string 1",
          "drugCnt": "sample string 2",
          "packageUnit": "sample string 3",
          "updateTime": "sample string 4"
        },
        {
          "$ref": "4"
        },
        {
          "$ref": "4"
        }
      ]
    }
  }
}