Files
cunkebao_v3/Server/application/api/model/WechatChatroomMemberModel.php

11 lines
174 B
PHP
Raw Normal View History

2025-03-18 14:56:14 +08:00
<?php
2025-03-24 16:42:36 +08:00
namespace app\api\model;
2025-03-18 14:56:14 +08:00
use think\Model;
class WechatChatroomMemberModel extends Model
{
2025-03-27 17:26:31 +08:00
// 设置表名
2025-04-12 15:08:21 +08:00
protected $table = 's2_wechat_chatroom_member';
2025-03-18 14:56:14 +08:00
}