18 lines
374 B
PHP
18 lines
374 B
PHP
<?php
|
|
|
|
namespace app\model;
|
|
|
|
use think\Db;
|
|
|
|
class AccountManager extends Base{
|
|
|
|
/**
|
|
* 根据条件获取客户经理
|
|
* @param $where 查询条件
|
|
* @param $field 查询字段
|
|
*/
|
|
public function getAccountManager($where, $field){
|
|
return Db::name('account_manager')->field($field)->where($where)->where(['is_delete'=>1])->select();
|
|
}
|
|
|
|
} |