namespace JiaZhiQuan.Common.ElasticSearch.Models { /** * PUT /mobile_addr { "mappings": { "properties": { "mobile": { "type": "keyword" }, "addr": { "type": "keyword" }, "province": { "type": "keyword" }, "city": { "type": "keyword" } } } } */ /// /// mobile_addr /// public class ESMobileAddress { public string mobile { get; set; } public string addr { get; set; } public string province { get; set; } public string city { get; set; } } }