first commit

This commit is contained in:
annnj-company
2026-04-17 18:29:53 +08:00
parent e49fa5a215
commit 130c1026c4
5615 changed files with 1639145 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
<?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();
}
}