| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546 | <?phpnamespace App\Models;use Illuminate\Database\Eloquent\Model;use Illuminate\Database\Eloquent\SoftDeletes;/** * App\Models\CategoryGroups * * @property int $id * @property string $name 名称 * @property string $alias 别名 * @property int $sys 是否是系统分组(1:是 0 :不是) * @property \Illuminate\Support\Carbon|null $created_at * @property \Illuminate\Support\Carbon|null $updated_at * @property string|null $deleted_at * @method static bool|null forceDelete() * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\CategoryGroups list() * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\CategoryGroups newModelQuery() * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\CategoryGroups newQuery() * @method static \Illuminate\Database\Query\Builder|\App\Models\CategoryGroups onlyTrashed() * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\CategoryGroups query() * @method static bool|null restore() * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\CategoryGroups whereAlias($value) * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\CategoryGroups whereCreatedAt($value) * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\CategoryGroups whereDeletedAt($value) * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\CategoryGroups whereId($value) * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\CategoryGroups whereName($value) * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\CategoryGroups whereSys($value) * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\CategoryGroups whereUpdatedAt($value) * @method static \Illuminate\Database\Query\Builder|\App\Models\CategoryGroups withTrashed() * @method static \Illuminate\Database\Query\Builder|\App\Models\CategoryGroups withoutTrashed() * @mixin \Eloquent */class CategoryGroups extends Model{    use SoftDeletes;    protected $table = 'category_groups';    protected $guarded = [];    public function scopeList()    {        return $this;    }}
 |