«

CloudProjectModel

时间:2024-8-14 19:36     作者:xiang     分类:


<?php

declare(strict_types=1);

namespace App\Model;

use Hyperf\Database\Model\SoftDeletes;
use Hyperf\DbConnection\Model\Model;
use Hyperf\ModelCache\Cacheable;

class CloudProjectModel extends Model
{
    use Cacheable;

    use SoftDeletes;

    /**
     * The table associated with the model.
     */
    protected ?string $table = 'cloud_project';

    /**
     * The attributes that are mass assignable.
     */
    protected array $fillable = [];

    /**
     * The attributes that should be cast to native types.
     */
    protected array $casts = [];

}