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

21 lines
333 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\Agent;
  4. use App\Models\AgentSetting;
  5. use Illuminate\Support\Facades\DB;
  6. /**
  7. * 仅用于测试
  8. * Class TController
  9. * @package App\Http\Controllers\Api
  10. */
  11. class TestController
  12. {
  13. public function index()
  14. {
  15. //test
  16. return AgentSetting::val(1, 'earnest') ?? 198.88;
  17. }
  18. }