Businese.QueryAppDAL.QueryInventory

查询我的库存

Parameters:

Name Type Description
No parameters.

Returns: List<QueryInventoryResult>

Sample:

Request:

    {
    "jsonrpc": "2.0",
    "method": "Businese.QueryAppDAL.QueryInventory",
    "params": {
        
    },
    "id": 1,
    "tags": {
        "usertoken": "",
        "sessionid": ""
    }
  }
Response:
{
  "jsonrpc": "2.0",
  "result": [
    {
      "ProductId": ""  /*商品Id*/,
      "ProductNo": ""  /*商品编号*/,
      "ProductName": ""  /*商品名称*/,
      "Spec": ""  /*规格*/,
      "Unit": ""  /*计量单位*/,
      "Qty": 0.0  /*库存数量*/
    }
  ],
  "error": null,
  "id": 1
}