| 12345678910111213141516171819202122232425262728 |
- <?php
- /**
- * raingad IM [ThinkPHP6]
- * @author xiekunyu <raingad@foxmail.com>
- */
- namespace app\enterprise\model;
- use app\BaseModel;
- use think\facade\Db;
- class Friend extends BaseModel
- {
- protected $pk="friend_id";
-
- public static function getFriend($map){
- $list=self::where($map)->select();
- $data=[];
- if($list){
- $list=$list->toArray();
- foreach($list as $k=>$v){
- $data[$v['friend_user_id']]=$v;
- }
- }
- return $data;
- }
-
- }
|