12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- using Senparc.Weixin.Entities;
- using System.Collections.Generic;
- namespace Senparc.Weixin.MP.AdvancedAPIs.Wxa.MerchantJson
- {
-
-
-
- public class PoiInMap
- {
-
-
-
- public string branch_name { get; set; }
-
-
-
- public string address { get; set; }
-
-
-
- public double longitude { get; set; }
-
-
-
- public double latitude { get; set; }
-
-
-
- public string telephone { get; set; }
-
-
-
- public string category { get; set; }
-
-
-
- public string sosomap_poi_uid { get; set; }
- public int data_supply { get; set; }
-
-
-
- public IEnumerable<string> pic_urls { get; set; }
-
-
-
- public IEnumerable<string> card_id_list { get; set; }
- }
- public class MapPoiData
- {
- public IEnumerable<PoiInMap> item { get; set; }
- }
- public class SearchMapPoiJson : WxJsonResult
- {
- public MapPoiData data { get; set; }
- }
- }
|