storeplatform.json 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  1. {
  2. "storeplatform": {
  3. "_parent": {
  4. "type": "info"
  5. },
  6. "properties": {
  7. "id": {
  8. "type": "long"
  9. },
  10. "idStore": {
  11. "type": "long"
  12. },
  13. "platformStoreId": {
  14. "type": "text",
  15. "index": "analyzed",
  16. "analyzer": "codefull_analyzer",
  17. "fields": {
  18. "raw": {
  19. "type": "keyword"
  20. }
  21. }
  22. },
  23. "idPlatformInfo": {
  24. "type": "long"
  25. },
  26. "platformName": {
  27. "type": "text",
  28. "analyzer": "index_ansj",
  29. "search_analyzer": "query_ansj",
  30. "fields": {
  31. "raw": {
  32. "type": "keyword"
  33. },
  34. "number": {
  35. "type": "text",
  36. "index": "analyzed",
  37. "analyzer": "number_analyzer"
  38. },
  39. "letter": {
  40. "type": "text",
  41. "index": "analyzed",
  42. "analyzer": "letter_analyzer"
  43. }
  44. }
  45. },
  46. "platformCode": {
  47. "type": "text",
  48. "index": "analyzed",
  49. "analyzer": "codefull_analyzer",
  50. "fields": {
  51. "raw": {
  52. "type": "keyword"
  53. }
  54. }
  55. },
  56. "platformType": {
  57. "type": "integer"
  58. },
  59. "enableStatue": {
  60. "type": "integer"
  61. },
  62. "platformShopName": {
  63. "type": "text",
  64. "index": "not_analyzed"
  65. },
  66. "platformShopAddress": {
  67. "type": "text",
  68. "index": "not_analyzed"
  69. },
  70. "platformShopPhone": {
  71. "type": "text",
  72. "index": "not_analyzed"
  73. },
  74. "platformShopGeoLat": {
  75. "type": "double"
  76. },
  77. "platformShopGeoLng": {
  78. "type": "double"
  79. },
  80. "createBy": {
  81. "type": "long"
  82. },
  83. "createTimeLong": {
  84. "type": "long"
  85. },
  86. "updateBy": {
  87. "type": "long"
  88. },
  89. "updateTimeLong": {
  90. "type": "long"
  91. }
  92. }
  93. }
  94. }