BehaviorOperationLog.php 274 B

12345678910111213141516
  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. }