11 lines
164 B
PHP
11 lines
164 B
PHP
<?php
|
|
|
|
namespace app\api\model;
|
|
|
|
use think\Model;
|
|
|
|
class WechatChatroomModel extends Model
|
|
{
|
|
// 设置表名
|
|
protected $table = 's2_wechat_chatroom';
|
|
}
|