storebrand.json 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. {
  2. "info": {
  3. "properties": {
  4. "id": {
  5. "type": "long"
  6. },
  7. "brandName": {
  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. "brandLogoUrl": {
  28. "type": "text",
  29. "index": "not_analyzed"
  30. },
  31. "startingPrice": {
  32. "type": "double"
  33. },
  34. "packagingFee": {
  35. "type": "double"
  36. },
  37. "brandMemo": {
  38. "type": "text",
  39. "index": "not_analyzed"
  40. },
  41. "voidFlag": {
  42. "type": "integer"
  43. },
  44. "createBy": {
  45. "type": "long"
  46. },
  47. "createTimeLong": {
  48. "type": "long"
  49. },
  50. "updateBy": {
  51. "type": "long"
  52. },
  53. "updateTimeLong": {
  54. "type": "long"
  55. }
  56. }
  57. }
  58. }