UserModel.php
383 字节
<?php
/**
* Created by PhpStorm.
* auther: sgj
* Date: 2018/11/25
* Time: 11:46
*/
namespace app\admin\model;
use think\Model;
class UserModel extends Model
{
public function getUserByPlatform($platform){
$map['user_type']='2';
$map['platform']=$platform;
$this->where('')->select();
}
public function getExpertByPlatform(){
}
}