后台用户管理界面
This commit is contained in:
22
app/user/model/User.php
Normal file
22
app/user/model/User.php
Normal file
@@ -0,0 +1,22 @@
|
||||
<?php
|
||||
|
||||
namespace app\user\model;
|
||||
|
||||
use fastphp\base\Model;
|
||||
|
||||
class User extends Model
|
||||
{
|
||||
protected $table = 'user';
|
||||
|
||||
//获取客户经理相关信息
|
||||
public function getManagerList($where = [],$fields = '*', $group = [], $order = '')
|
||||
{
|
||||
return $this->field($fields)->where($where)->group($group)->order($order)->fetchAll();
|
||||
}
|
||||
|
||||
//用户是否存在
|
||||
public function isExit($where = '', $fields = '*')
|
||||
{
|
||||
return $this->field($fields)->where($where)->fetch();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user