优化部分代码,增加微信公众号模板
This commit is contained in:
15
app/Models/wechat/WechatThemeModel.php
Normal file
15
app/Models/wechat/WechatThemeModel.php
Normal 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 = [];
|
||||
}
|
||||
Reference in New Issue
Block a user