public function followupAuditorList($request, $response)
 {
     /*{{{*/
     $auditor = $this->auditor;
     $salesAuditorList = FollowupOwner::getFollowupSalesAdminAuditors();
     if (false == array_key_exists($this->auditor->id, $salesAuditorList)) {
         echo "抱歉,您没有权限!";
         return parent::DIRECT_OUTPUT;
     }
     $followupAuditorList = DAL::get()->find_all('followupauditor');
     $response->followupAuditorList = $followupAuditorList;
     $followupAuditorRoleCategory = DAL::get()->find_all('followupauditorrole');
     $response->followupAuditorRoleCategory = $followupAuditorRoleCategory;
 }