私域操盘手 - 调整微信账号限制记录至模型WechatRestrictsModel

This commit is contained in:
柳清爽
2025-05-14 15:00:21 +08:00
parent 798b0d7854
commit 2ad1b99ea3
3 changed files with 44 additions and 26 deletions

View File

@@ -0,0 +1,17 @@
<?php
namespace app\common\model;
use think\Model;
/**
* 微信风险受限记录
*/
class WechatRestricts extends Model
{
const LEVEL_WARNING = 2;
const LEVEL_ERROR = 3;
// 设置数据表名
protected $name = 'wechat_restricts';
}