Beispiel #1
0
 /**
  * 查询计划信息
  */
 public function do_getPlan()
 {
     return Bll_Plan_Fix_HzFix::getPlan($this->params['planId']);
 }
 /**
  * 公共计划非空判断
  * @throws Exception_BllErrorException
  */
 private function checkPlanIsEmpty()
 {
     $planInfo = Bll_Plan_Fix_HzFix::getPlan($this->params['plan_id']);
     if (!$planInfo['status']) {
         throw new Exception_BllErrorException($planInfo['msg']);
     }
     return $planInfo['msg'];
 }