BehaviorOperationLog.php 430 B

1234567891011121314151617181920212223
  1. <?php
  2. /**
  3. * Created by PhpStorm.
  4. * User: durong
  5. * Date: 2019/6/13
  6. * Time: 15:22
  7. */
  8. namespace App\Models;
  9. use Illuminate\Database\Eloquent\Model;
  10. class BehaviorOperationLog extends Model
  11. {
  12. protected $table = 'behavior_operation_log';
  13. protected $guarded = [];
  14. /**
  15. * 可被批量赋值的字段
  16. * @var array
  17. */
  18. protected $fillable = ['operator_id','behavior_id','username','type','content'];
  19. }