Files
nl-admin-api/app/Models/wechat/WechatArticleVersionModel.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
336 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;
/**
* 公众号图文版本流水表模型(日志型,仅 created_at每次创建/修改/删除/回退/发布落一条快照)
*/
class WechatArticleVersionModel extends BaseModel
{
protected $table = 'wechat_article_version';
protected $guarded = [];
}