Files
nl-admin-api/app/Models/wechat/WechatAccountModel.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
297 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;
/**
* 微信公众号账号配置表模型app_secret 库内 AES 加密存储,查询逻辑放 Service
*/
class WechatAccountModel extends BaseModel
{
protected $table = 'wechat_account';
protected $guarded = [];
}