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