// +---------------------------------------------------------------------- declare (strict_types=1); namespace app\store\model\eorder; use think\facade\Cache; use app\common\model\eorder\Setting as SettingModel; /** * 电子面单设置模型 * Class Setting * @package app\store\model\eorder */ class Setting extends SettingModel { /** * 设置项描述 * @var array */ private array $describe = ['basic' => '基础设置']; /** * 获取基础设置 * @return array|mixed * @throws \think\db\exception\DataNotFoundException * @throws \think\db\exception\DbException * @throws \think\db\exception\ModelNotFoundException */ public static function getBasic() { return self::getItem('basic'); } /** * 更新系统设置 * @param string $key * @param array $values * @return bool */ public function edit(string $key, array $values): bool { $model = self::detail($key) ?: $this; // 删除系统设置缓存 Cache::delete('eorder_setting_' . self::$storeId); return $model->save([ 'key' => $key, 'describe' => $this->describe[$key], 'values' => $values, 'update_time' => time(), 'store_id' => self::$storeId, ]) !== false; } }