12345678910111213141516171819202122 |
- <?php
- namespace App\Models;
- use Illuminate\Database\Eloquent\Model;
- class CommentRecord extends Model
- {
-
- protected $table = 'comment_account_record';
- protected $guarded = [];
- public function Behavior()
- {
- return $this->belongsTo('App\Models\Behavior','virus_behavior_id','virus_behavior_id');
- }
- }
|