- <?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 = [];
- }
|