GET api/Product/getCity

“getCity”的文档。

Response Information

Response body formats

application/json, text/json

Sample:
{
  "Items": [
    {
      "Id": 1,
      "ParentId": 2,
      "Name": "sample string 3"
    },
    {
      "Id": 1,
      "ParentId": 2,
      "Name": "sample string 3"
    },
    {
      "Id": 1,
      "ParentId": 2,
      "Name": "sample string 3"
    }
  ]
}

application/xml, text/xml

Sample:
<RegionsModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/TaiShengShi.Models">
  <Items>
    <CitysModel>
      <Id>1</Id>
      <Name>sample string 3</Name>
      <ParentId>2</ParentId>
    </CitysModel>
    <CitysModel>
      <Id>1</Id>
      <Name>sample string 3</Name>
      <ParentId>2</ParentId>
    </CitysModel>
    <CitysModel>
      <Id>1</Id>
      <Name>sample string 3</Name>
      <ParentId>2</ParentId>
    </CitysModel>
  </Items>
</RegionsModel>