Files
juipphp/app/agent/model/User.php
“wanyongkang” 2a5c9d53cb 代理商管理
2021-02-17 18:42:35 +08:00

22 lines
507 B
PHP

<?php
namespace app\agent\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();
}
}