UserFriends.php 318 B

123456789101112131415161718192021
  1. <?php
  2. /**
  3. * Created by PhpStorm.
  4. * User: ring
  5. * Date: 2019/7/17
  6. * Time: 上午11:28
  7. */
  8. namespace App\Models;
  9. use Illuminate\Database\Eloquent\Model;
  10. class UserFriends extends Model
  11. {
  12. protected $table = 'love_user_friends';
  13. protected $fillable = [
  14. 'uid', 'to_uid','description','type'
  15. ];
  16. }