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.

20 lines
357 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. class UserCollection extends Model
  7. {
  8. use SoftDeletes;
  9. protected $table = 'lanzu_user_collection';
  10. protected $fillable = [
  11. 'id',
  12. 'user_id',
  13. 'market_id',
  14. 'store_id',
  15. 'deleted_at'
  16. ];
  17. }