| | |
| | | <result column="query_model" jdbcType="VARCHAR" property="queryModel"/> |
| | | <result column="sql" jdbcType="CLOB" property="sql"/> |
| | | <result column="proc" jdbcType="VARCHAR" property="proc"/> |
| | | <result column="java_script" jdbcType="CLOB" property="javaScript"/> |
| | | <result column="template" jdbcType="CLOB" property="template"/> |
| | | <result column="status_cd" jdbcType="VARCHAR" property="statusCd"/> |
| | | <result column="remark" jdbcType="VARCHAR" property="remark"/> |
| | |
| | | <parameter property="resMsg" javaType="java.lang.String" jdbcType="CLOB" mode="OUT" /> |
| | | </parameterMap> |
| | | |
| | | <!--保存订单信息 c_orders 中 --> |
| | | <!--执行查询sql --> |
| | | <select id="executeSql" parameterType="String" resultType="Map"> |
| | | ${value} |
| | | </select> |
| | | <!--执行 update sql--> |
| | | <update id="updateSql" parameterType="String"> |
| | | ${value} |
| | | </update> |
| | | |
| | | <select id="executeProc" parameterMap="qryProcParam"> |
| | | {call ${procNameInfo}?)} |
| | | </select> |
| | | |
| | | <update id="updateProc" parameterMap="qryProcParam"> |
| | | {call ${procNameInfo}?)} |
| | | </update> |
| | | |
| | | <select id="qureyServiceSqlAll" resultMap="serviceSqlMap"> |
| | | SELECT css.service_code,css.name,css.params,css.query_model,css.sql, |
| | | css.proc,css.template,css.remark,css.status_cd |
| | | css.proc,css.java_script,css.template,css.remark,css.status_cd |
| | | FROM c_service_sql css WHERE css.status_cd = '0' |
| | | </select> |
| | | |