123456789101112131415161718192021222324252627 |
- <?php
- declare (strict_types = 1);
- namespace App\Model;
- use Hyperf\DbConnection\Model\Model;
- class ChatGroups extends Model
- {
-
- protected ?string $table = 'chat_groups';
-
- protected array $fillable = [];
-
- protected array $casts = [];
- }
|