first commit

This commit is contained in:
liu
2026-05-30 17:38:49 +08:00
commit 2bcb722448
413 changed files with 43656 additions and 0 deletions
@@ -0,0 +1,29 @@
<?php
namespace Modules\SystemTool\Models;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Database\Eloquent\Relations\HasMany;
/**
* Class SettingGroup
*/
class SysConfigGroupModel extends Model
{
protected $table = 'sys_config_group';
protected $fillable = [
'title',
'key',
'remark',
];
/**
* 关联设置项目
* @return HasMany
*/
public function settings(): HasMany
{
return $this->hasMany(SysConfigItemsModel::class ,'group_id', 'id');
}
}