CommentRecord.php 431 B

12345678910111213141516171819202122
  1. <?php
  2. namespace App\Models;
  3. use Illuminate\Database\Eloquent\Model;
  4. /**
  5. * Created by PhpStorm.
  6. * User: durong
  7. * Date: 2019/6/14
  8. * Time: 下午6:01
  9. */
  10. class CommentRecord extends Model
  11. {
  12. //评论账本
  13. protected $table = 'comment_account_record';
  14. protected $guarded = [];
  15. public function Behavior()
  16. {
  17. return $this->belongsTo('App\Models\Behavior','virus_behavior_id','virus_behavior_id');
  18. }
  19. }