12 lines
184 B
PHP
12 lines
184 B
PHP
<?php
|
|
|
|
namespace app\store\model;
|
|
|
|
use think\Model;
|
|
|
|
class WechatFriendModel extends Model
|
|
{
|
|
//protected $name = 'wechat_friendship';
|
|
protected $table = 's2_wechat_friend';
|
|
|
|
}
|