storeplatform.json 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. {
  2. "info": {
  3. "properties": {
  4. "id": {
  5. "type": "long"
  6. },
  7. "idStore": {
  8. "type": "long"
  9. },
  10. "platformStoreId": {
  11. "type": "text",
  12. "analyzer": "index_ansj",
  13. "fields": {
  14. "raw": {
  15. "type": "keyword"
  16. }
  17. }
  18. },
  19. "idPlatformInfo": {
  20. "type": "long"
  21. },
  22. "platformName": {
  23. "type": "text",
  24. "analyzer": "index_ansj",
  25. "search_analyzer": "query_ansj",
  26. "fields": {
  27. "raw": {
  28. "type": "keyword"
  29. },
  30. "number": {
  31. "type": "text",
  32. "index": "analyzed",
  33. "analyzer": "number_analyzer"
  34. },
  35. "letter": {
  36. "type": "text",
  37. "index": "analyzed",
  38. "analyzer": "letter_analyzer"
  39. }
  40. }
  41. },
  42. "platformCode": {
  43. "type": "text",
  44. "analyzer": "index_ansj",
  45. "fields": {
  46. "raw": {
  47. "type": "keyword"
  48. }
  49. }
  50. },
  51. "platformType": {
  52. "type": "integer"
  53. },
  54. "enableStatue": {
  55. "type": "integer"
  56. },
  57. "createBy": {
  58. "type": "long"
  59. },
  60. "createTimeLong": {
  61. "type": "long"
  62. },
  63. "updateBy": {
  64. "type": "long"
  65. },
  66. "updateTimeLong": {
  67. "type": "long"
  68. }
  69. }
  70. }
  71. }