123456789101112131415161718192021222324 |
- <?php
- /**
- * Created by PhpStorm.
- * User: Administrator
- * Date: 2019/4/17
- * Time: 9:54
- */
- namespace App\Transfer;
- use Illuminate\Database\Eloquent\Model;
- class TaskLog extends Model
- {
- protected $connection = "transfer_center";
- protected $table = "qs_task_log";
- protected $guarded = [];
- public function companys()
- {
- return $this->belongsTo(Company::class, 'uid', 'uid');
- }
- }
|