Device.php
591 Bytes
<?php
/**
* Created by PhpStorm.
* User: Administrator
* Date: 2018/1/26
* Time: 15:45
*/
namespace App\Modules\Models\Device;
use Illuminate\Foundation\Auth\User as Authenticatable;
use App\Modules\Models\Device\Traits\Attribute\DeviceAttribute;
use App\Modules\Models\Device\Traits\Relationship\DeviceRelationship;
class Device extends Authenticatable
{
use DeviceAttribute, DeviceRelationship;
protected $table = 'apply_beacon';
protected $fillable = ['remark', 'num'];
/**
* Get the relationships for the entity.
*
* @return array
*/
}