orderdetailitem.json 1.1 KB

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