链街Dcat后台
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.

23 lines
532 B

  1. <?php
  2. return [
  3. 'indices' => [
  4. 'mappings' => [
  5. 'lanzu-goods-test' => [
  6. "properties"=> [
  7. "name"=> [
  8. "type"=> "text",
  9. "analyzer"=> "ik_max_word",
  10. "search_analyzer"=> "ik_smart"
  11. ],
  12. 'store_id'=>[
  13. "type"=> "integer",
  14. ],
  15. 'market_id'=>[
  16. "type"=> "integer",
  17. ]
  18. ]
  19. ]
  20. ]
  21. ],
  22. ];