storeplatform.json 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  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. "createBy": {
  63. "type": "long"
  64. },
  65. "createTimeLong": {
  66. "type": "long"
  67. },
  68. "updateBy": {
  69. "type": "long"
  70. },
  71. "updateTimeLong": {
  72. "type": "long"
  73. }
  74. }
  75. }
  76. }