12345678910111213141516171819 |
- <?php
- /**
- * Created by PhpStorm.
- * User: Administrator
- * Date: 2019/4/29
- * Time: 14:06
- */
- namespace App\Transfer;
- use Illuminate\Database\Eloquent\Model;
- class QueueAutoRefresh extends Model
- {
- protected $connection = "transfer_center";
- protected $table = "qs_queue_auto_refresh";
- protected $guarded = [];
- }
|