Files
nl-admin-api/app/Models/wechat/WechatThemeModel.php
李琦 6e2769c528
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
优化部分代码,增加微信公众号模板
2026-08-13 19:02:05 +08:00

16 lines
288 B
PHP
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<?php
namespace App\Models\wechat;
use App\BaseApp\BaseModel;
/**
* 公众号自定义排版主题表模型(用户上传的模板 JSON查询逻辑放 Service
*/
class WechatThemeModel extends BaseModel
{
protected $table = 'wechat_theme';
protected $guarded = [];
}