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

11 lines
152 B
PHP
Raw Normal View History

2025-03-24 16:42:36 +08:00
<?php
namespace app\api\model;
use think\Model;
class WechatFriendModel extends Model
{
2025-03-27 17:26:31 +08:00
// 设置表名
protected $name = 'wechat_friend';
2025-03-24 16:42:36 +08:00
}