Files
lgp-admin-plus-api/app/Models/wechat/WechatArticleModel.php

16 lines
296 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;
/**
* 公众号图文文章表模型(存 Markdown 源码 + 主题 key/主色,查询逻辑放 Service
*/
class WechatArticleModel extends BaseModel
{
protected $table = 'wechat_article';
protected $guarded = [];
}