12345678910111213141516171819202122232425262728293031323334353637 |
- <?php
- declare(strict_types=1);
- namespace App\Model;
- use Hyperf\DbConnection\Model\Model;
- class Sector extends Model
- {
- /**
- * The table associated with the model.
- */
- protected ?string $table = 'sector';
- /**
- * The attributes that are mass assignable.
- */
- protected array $fillable = [];
- /**
- * The attributes that should be cast to native types.
- */
- protected array $casts = ['id' => 'integer', 'template_id' => 'integer', 'created_at' => 'datetime', 'updated_at' => 'datetime'];
- }
- /**
- * @property int $id
- * @property int $template_id
- * @property string $sector_name
- * @property string $sector_code
- * @property string $page_type
- * @property string $sector_img
- * @property \Carbon\Carbon $created_at
- * @property \Carbon\Carbon $updated_at
- */
|