paperinfo.json 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. {
  2. "info": {
  3. "properties": {
  4. "id": {
  5. "type": "long"
  6. },
  7. "idPaperType": {
  8. "type": "long"
  9. },
  10. "paperName": {
  11. "type": "text",
  12. "analyzer": "index_ansj",
  13. "search_analyzer": "query_ansj",
  14. "fields": {
  15. "raw": {
  16. "type": "keyword"
  17. },
  18. "number": {
  19. "type": "text",
  20. "index": "analyzed",
  21. "analyzer": "number_analyzer"
  22. },
  23. "letter": {
  24. "type": "text",
  25. "index": "analyzed",
  26. "analyzer": "letter_analyzer"
  27. }
  28. }
  29. },
  30. "paperCode": {
  31. "type": "keyword",
  32. "index": "not_analyzed"
  33. },
  34. "mtModel": {
  35. "type": "text",
  36. "index": "not_analyzed",
  37. "fields": {
  38. "raw": {
  39. "type": "keyword"
  40. }
  41. }
  42. },
  43. "mtRule": {
  44. "type": "keyword",
  45. "index": "not_analyzed",
  46. "fields": {
  47. "number": {
  48. "type": "text",
  49. "index": "analyzed",
  50. "analyzer": "number_analyzer"
  51. }
  52. }
  53. },
  54. "mtSuttle": {
  55. "type": "double",
  56. "index": "not_analyzed"
  57. },
  58. "barCode": {
  59. "type": "keyword",
  60. "index": "not_analyzed"
  61. },
  62. "remark": {
  63. "type": "text",
  64. "index": "not_analyzed"
  65. },
  66. "voidFlag": {
  67. "type": "long"
  68. },
  69. "priceType": {
  70. "type": "long"
  71. }
  72. }
  73. }
  74. }