storeinvoiceinfo.json 1.2 KB

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