dataLists(new AccountLogLists()); } /** * @notes 用户余额变动类型 * @return \think\response\Json * @author 段誉 * @date 2023/2/24 15:25 */ public function getUmChangeType() { return $this->data(AccountLogEnum::getUserMoneyChangeTypeDesc()); } public function getCompanyUserList() { $param = $this->request->param(); $companyId = $param['company_id']; $userList = User::where(['company_id' => $companyId])->field('id,nickname,avatar,sn,mobile,group_id,deposit,income')->select()->toArray(); return $this->success('成功', $userList); } }