1234567891011121314151617181920212223 |
- <?php
- /**
- * Created by PhpStorm.
- * User: durong
- * Date: 2019/6/13
- * Time: 15:22
- */
- namespace App\Models;
- use Illuminate\Database\Eloquent\Model;
- class BehaviorOperationLog extends Model
- {
- protected $table = 'behavior_operation_log';
- protected $guarded = [];
- /**
- * 可被批量赋值的字段
- * @var array
- */
- protected $fillable = ['operator_id','behavior_id','username','type','content'];
- }
|