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

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