1. 调整异常处理类

2. 统一职责分工
3. 清除多余代码
This commit is contained in:
技术老胡
2026-02-24 13:37:35 +08:00
parent d29751cce8
commit d5a134d3a8
59 changed files with 3370 additions and 646 deletions

View File

@@ -0,0 +1,38 @@
<?php
namespace app\models;
use app\common\base\BaseModel;
/**
* 系统配置模型
*
* 对应表ma_system_config
*/
class SystemConfig extends BaseModel
{
/**
* 启用自动维护 created_at / updated_at
*
* @var bool
*/
public $timestamps = true;
/**
* 表名
*
* @var string
*/
protected $table = 'ma_system_config';
/**
* 允许批量赋值的字段
*
* @var array
*/
protected $fillable = [
'config_key',
'config_value',
];
}