| 123456789101112131415161718192021222324252627282930313233 |
- <?php
- declare(strict_types=1);
- namespace App\Model;
- use Hyperf\DbConnection\Model\Model;
- /**
- */
- class UserImp extends Model
- {
- /**
- * The table associated with the model.
- */
- /**
- * The connection name for the model.
- *
- * @var string
- */
- protected ?string $connection = 'imp';
- protected ?string $table = 'users';
- /**
- * The attributes that are mass assignable.
- */
- protected array $fillable = [];
- protected array $hidden = [];
- /**
- * The attributes that should be cast to native types.
- */
- protected array $casts = [];
- }
|