fix: 修复错误; refactor: 重写/重构代码,但未改变API行为; style: 添加空格、格式化、缺失的分号等; test: 添加缺失的测试或修正现有的测试; docs: 更新文档如readme; build: 更新依赖、项目版本; ops: 影响操作组件如基础设施、部署、备份、恢复; chore: 修改.gitignore; 请根据以上信息生成规范的用中文conventional commit message,谨慎选择最能说明更改的Commit type,请控制你的输出在一行内,你的回复中应该仅有一条commit message。 Your reply format:
30 lines
709 B
PHP
30 lines
709 B
PHP
<?php
|
|
|
|
namespace app\common\model\system_store;
|
|
|
|
|
|
use app\common\model\BaseModel;
|
|
use Illuminate\Support\Facades\Log;
|
|
use think\model\concern\SoftDelete;
|
|
use Throwable;
|
|
|
|
/**
|
|
* 门店列表模型
|
|
* Class SystemStore
|
|
* @package app\common\model\system_store
|
|
*/
|
|
class SystemStore extends BaseModel
|
|
{
|
|
use SoftDelete;
|
|
protected $name = 'system_store';
|
|
protected $deleteTime = 'delete_time';
|
|
|
|
public static function onAfterWrite($data){
|
|
try{
|
|
channelLog($data->getOrigin(),'system_store','更新前');
|
|
channelLog($data->toArray(),'system_store','更新后');
|
|
}catch(Throwable $e){
|
|
Log::error('system_store:'.$e->getMessage());
|
|
}
|
|
}
|
|
} |