InterestCirclePicture.php 359 B

123456789101112131415161718192021
  1. <?php
  2. /**
  3. * Created by PhpStorm.
  4. * User: Administrator
  5. * Date: 2019/6/5
  6. * Time: 16:24
  7. */
  8. namespace App\Models;
  9. use Illuminate\Database\Eloquent\Model;
  10. use Illuminate\Database\Eloquent\SoftDeletes;
  11. class InterestCirclePicture extends Model
  12. {
  13. //
  14. use SoftDeletes;
  15. protected $table = 'interest_circle_pictures';
  16. protected $guarded = [];
  17. }