platformrequire.json 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. {
  2. "info": {
  3. "properties": {
  4. "id": {
  5. "type": "long"
  6. },
  7. "requireName": {
  8. "type": "text",
  9. "analyzer": "index_ansj",
  10. "search_analyzer": "query_ansj",
  11. "fields": {
  12. "raw": {
  13. "type": "keyword"
  14. },
  15. "number": {
  16. "type": "text",
  17. "index": "analyzed",
  18. "analyzer": "number_analyzer"
  19. },
  20. "letter": {
  21. "type": "text",
  22. "index": "analyzed",
  23. "analyzer": "letter_analyzer"
  24. }
  25. }
  26. },
  27. "requireCode": {
  28. "type": "text",
  29. "index": "not_analyzed",
  30. "fields": {
  31. "raw": {
  32. "type": "keyword"
  33. }
  34. }
  35. },
  36. "valueType": {
  37. "type": "integer"
  38. },
  39. "voidFlag": {
  40. "type": "integer"
  41. },
  42. "createBy": {
  43. "type": "long"
  44. },
  45. "createTimeLong": {
  46. "type": "long"
  47. },
  48. "updateBy": {
  49. "type": "long"
  50. },
  51. "updateTimeLong": {
  52. "type": "long"
  53. }
  54. }
  55. }
  56. }