| 123456789101112131415161718192021 |
- <?php
- /**
- * Created by PhpStorm.
- * User: ring
- * Date: 2019/7/17
- * Time: 上午11:28
- */
- namespace App\Models;
- use Illuminate\Database\Eloquent\Model;
- class UserFriends extends Model
- {
- protected $table = 'love_user_friends';
- protected $fillable = [
- 'uid', 'to_uid','description','type'
- ];
- }
|