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

20 lines
359 B

5 years ago
  1. <?php
  2. namespace App\Http\Controllers\Api;
  3. use App\Models\Agent;
  4. use App\Models\Channel;
  5. use Illuminate\Support\Facades\DB;
  6. /**
  7. * 仅用于测试
  8. * Class TController
  9. * @package App\Http\Controllers\Api
  10. */
  11. class TController
  12. {
  13. public function index()
  14. {
  15. return Agent::query()->where(['appid' => 'wxb35ef055a4dd8ad4', 'status' => 1])->value('id');
  16. }
  17. }