From 8ba1c99540f606c0167e9890cb31c43cec54bd08 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=BC=A0=E8=90=8C?= <494089941@qq.com> Date: Sun, 26 Mar 2023 12:11:33 +0800 Subject: [PATCH] =?UTF-8?q?=E6=B7=BB=E5=8A=A0=E5=AD=97=E6=AE=B5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- application/crm/controller/Customer.php | 1 + 1 file changed, 1 insertion(+) diff --git a/application/crm/controller/Customer.php b/application/crm/controller/Customer.php index 063de9e..91d1623 100644 --- a/application/crm/controller/Customer.php +++ b/application/crm/controller/Customer.php @@ -129,6 +129,7 @@ class Customer extends ApiCommon $data['flow_id'] = $customerCheck['flow_id']; $data['owner_user_id']=$customerCheck['user_id']; $data['customer_check_id']=$customerCheck['customer_check_id']; + $data['apply_user_name']=db('admin_user')->where('id', $customerCheck['create_user_id'])->column("username"); } return resultArray(['data' => $data]); }