123456789101112131415161718192021 |
- <?php
- if (!defined('IS_INITPHP')) exit('Access Denied!');
- /**
- * 用于在配置流的列表
- * 命名规则 I和D要注册大小写
- * 命名规则 I_name I是通过URL获取内容
- * 命名规则 D_name D是通过上一条数据获取内容 verifi
- * 'demo' => array(
- '{"nodeType":"data|pass|if|verifi",parameter:"[para1,pa]","resultType":"autoid|entity|boolean|return|list","sqlType":"select|update|insert|delete","sqlString":"select hospitalId,hospitalName,hospLevel,hospPhoto,favoriteNum,commentNum from hzremote.hz_hospitalinfo where status =0"}'
- ),
- * nodeType:pass 为验证如果返回结果为空则可以进入下一步
- * nodeType:if 如为if 在parameter里只能有一个为IF|参数 sqlString sql语句里 <if>条件</if>
- * "nodeType":"verifi" 如果节点为verifi 那就执行下面两条语句,一个节点返回true的执行,一个节点返回为false的执行
- *
- */
- $remoteConfig = array(
-
-
-
- );
- ?>
|