Files
cunkebao_v3/Server/application/common/model/WechatAccount.php

19 lines
341 B
PHP
Raw Normal View History

2025-04-16 16:10:37 +08:00
<?php
namespace app\common\model;
use think\Model;
/**
* 微信账号模型类
*/
class WechatAccount extends Model
{
// 设置表名
protected $name = 'wechat_account';
// 自动写入时间戳
protected $autoWriteTimestamp = true;
protected $createTime = 'createTime';
protected $updateTime = 'updateTime';
2025-04-16 16:10:37 +08:00
}