buildsuccess($res); } /** * 获取报告类型列表 * * This method retrieves a list of report types. * * @return array An array containing the report types. * * @example * ```php * $reportTypeList = EnumCfg::getReportTypeList(); * ``` */ public function getReportObjTypeList() { $res = ( EnumCfg::reportObjType); return $this->buildsuccess($res); } /** * 获取客户类型列表 * * This method retrieves a list of customer types. * * @return array An array containing the customer types. * * $customTypeList = EnumCfg::getCustomTypeList(); * ``` */ public function getCustomTypeList() { $res = ( EnumCfg::customType); return $this->buildsuccess($res); } /** * 获取报告类别列表 * */ public function getReportClassList() { $res = ( EnumCfg::reportClass); return $this->buildsuccess($res); } }