device_location_es.sql 934 B

123456789101112131415161718192021222324252627282930313233
  1. -- 设备地址elasticsearch 新增mapping
  2. curl -XPUT http://url/device_location_index
  3. {
  4. "mappings": {
  5. "device_location_type": {
  6. "properties": {
  7. "categoryCode": {
  8. "type": "string"
  9. },
  10. "createTime": {
  11. "type": "date",
  12. "format": "yyyy-MM-dd HH:mm:ss"
  13. },
  14. "deviceSn": {
  15. "type": "string"
  16. },
  17. "deviceTime": {
  18. "type": "date",
  19. "format": "yyyy-MM-dd HH:mm:ss"
  20. },
  21. "idCard": {
  22. "type": "string"
  23. },
  24. "location": {
  25. "type": "geo_point"
  26. }
  27. }
  28. }
  29. }
  30. }