You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

36 lines
580 B

  1. <?php
  2. declare (strict_types=1);
  3. namespace App\Model\v3;
  4. use App\Model\Model;
  5. use Hyperf\Database\Model\SoftDeletes;
  6. /**
  7. */
  8. class Store extends Model
  9. {
  10. use SoftDeletes;
  11. /**
  12. * The table associated with the model.
  13. *
  14. * @var string
  15. */
  16. protected $table = 'lanzu_store';
  17. /**
  18. * The attributes that are mass assignable.
  19. *
  20. * @var array
  21. */
  22. protected $fillable = [];
  23. /**
  24. * The attributes that should be cast to native types.
  25. *
  26. * @var array
  27. */
  28. protected $casts = [];
  29. protected $appends = [];
  30. }