海南旅游SAAS
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.

19 lines
332 B

4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
  1. <?php
  2. namespace App\Http\Controllers\Api;
  3. use App\Models\Product;
  4. /**
  5. * 仅用于测试
  6. * Class TController
  7. * @package App\Http\Controllers\Api
  8. */
  9. class TestController
  10. {
  11. public function index()
  12. {
  13. //test
  14. return Product::query()->whereIn('id', explode(',', '1,2,3,4,5,6'))->get(['id AS product_id', 'supplier_id']);
  15. }
  16. }