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