ESMobileAddress.cs 628 B

1234567891011121314151617181920212223242526272829303132333435
  1. namespace JiaZhiQuan.Common.ElasticSearch.Models
  2. {
  3. /**
  4. *
  5. PUT /mobile_addr
  6. {
  7. "mappings": {
  8. "properties": {
  9. "mobile": {
  10. "type": "keyword"
  11. },
  12. "addr": {
  13. "type": "keyword"
  14. },
  15. "province": {
  16. "type": "keyword"
  17. },
  18. "city": {
  19. "type": "keyword"
  20. }
  21. }
  22. }
  23. }
  24. */
  25. /// <summary>
  26. /// mobile_addr
  27. /// </summary>
  28. public class ESMobileAddress
  29. {
  30. public string mobile { get; set; }
  31. public string addr { get; set; }
  32. public string province { get; set; }
  33. public string city { get; set; }
  34. }
  35. }