12345678910111213141516171819202122232425262728293031323334353637 |
- <?php
- namespace App\Models\SysModels;
- use Illuminate\Database\Eloquent\Model;
- class AdminLog extends Model
- {
- /**
- * 表名。
- *
- * @var string
- */
- protected $table = 'admin_logs';
- /**
- * 与表关联的主键。
- *
- * @var string
- */
- protected $primaryKey = 'id';
- /**
- * 是否主动维护时间戳
- *
- * @var bool
- */
- public $timestamps = true;
- /**
- * 不能被批量赋值的属性
- *
- * @var array
- */
- protected $guarded = ['id', 'updated_at', 'created_at'];
- }
|