智盟项目
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

79 lines
1.1 KiB

  1. package md
  2. const ZhiosNewVideo = "zhios_new_video"
  3. const ZhiosNewVideoEsMapping = `
  4. {
  5. "settings" : {
  6. "number_of_shards" : 2,
  7. "number_of_replicas" : 1
  8. },
  9. "mappings":{
  10. "properties":{
  11. "id":{
  12. "type": "integer"
  13. },
  14. "is_hot":{
  15. "type": "integer"
  16. },
  17. "is_close":{
  18. "type": "integer"
  19. },
  20. "key":{
  21. "type": "keyword"
  22. },
  23. "appid":{
  24. "type": "keyword"
  25. },
  26. "first_cate":{
  27. "type": "keyword"
  28. },
  29. "type":{
  30. "type": "keyword"
  31. },
  32. "title":{
  33. "type": "keyword"
  34. },
  35. "description":{
  36. "type": "keyword"
  37. },
  38. "second_cate":{
  39. "type": "keyword"
  40. },
  41. "episode":{
  42. "type": "integer"
  43. },
  44. "platform":{
  45. "type": "keyword"
  46. },
  47. "update_time":{
  48. "type": "integer"
  49. },
  50. "image_url":{
  51. "type": "keyword"
  52. },
  53. "is_end":{
  54. "type": "integer"
  55. },
  56. "is_close":{
  57. "type": "integer"
  58. },
  59. "pay_episode":{
  60. "type": "integer"
  61. },
  62. "material":{
  63. "type": "keyword"
  64. },
  65. "online_time":{
  66. "type": "keyword"
  67. },
  68. "time":{
  69. "type": "integer"
  70. },
  71. "data":{
  72. "type": "text"
  73. }
  74. }
  75. }
  76. }`