Files
pgserver3.0/pgserver/application/model/AccountManager.php
annnj-company 130c1026c4 first commit
2026-04-17 18:29:53 +08:00

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();
}
}