优化部分代码,增加微信公众号模板
Some checks failed
Tests / PHP 8.2 (push) Has been cancelled
Tests / PHP 8.3 (push) Has been cancelled
Tests / PHP 8.4 (push) Has been cancelled

This commit is contained in:
李琦
2026-08-13 19:02:05 +08:00
parent 2f5e298d6b
commit 6e2769c528
14 changed files with 1578 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
<?php
namespace App\Models\wechat;
use App\BaseApp\BaseModel;
/**
* 公众号自定义排版主题表模型(用户上传的模板 JSON查询逻辑放 Service
*/
class WechatThemeModel extends BaseModel
{
protected $table = 'wechat_theme';
protected $guarded = [];
}