| | |
| | | <?xml version="1.0" encoding="UTF-8" ?> |
| | | <!DOCTYPE mapper |
| | | PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" |
| | | <!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" |
| | | "http://mybatis.org/dtd/mybatis-3-mapper.dtd"> |
| | | <mapper namespace="mappingServiceDaoImpl"> |
| | | |
| | | <!-- 保存映射信息 add by wuxw 2018-07-03 --> |
| | | <insert id="saveMappingInfo" parameterType="Map"> |
| | | <![CDATA[ |
| | | insert into c_mapping select |
| | | #{id},#{domain},#{name},#{key},#{value},#{remark},now(),'0' |
| | | |
| | | insert into c_mapping |
| | | select #{id}, |
| | | #{domain}, |
| | | #{name}, |
| | | #{key}, |
| | | #{value}, |
| | | #{remark}, |
| | | now(), |
| | | '0' |
| | | ]]> |
| | | |
| | | </insert> |
| | | |
| | | |
| | | <!-- 查询映射信息(Business) add by wuxw 2018-07-03 --> |
| | | <select id="getBusinessMappingInfo" parameterType="Map" resultType="Map"> |
| | |
| | | <if test="key !=null and key != ''"> |
| | | and t.`key`= #{key} |
| | | </if> |
| | | |
| | | </select> |
| | | |
| | | |
| | | <!-- 保存映射信息至 instance表中 add by wuxw 2018-07-03 --> |
| | | <insert id="saveMappingInfoInstance" parameterType="Map"> |
| | |
| | | <if test="key !=null and key != ''"> |
| | | and t.key= #{key} |
| | | </if> |
| | | |
| | | </insert> |
| | | |
| | | |
| | | <!-- 查询映射信息 add by wuxw 2018-07-03 --> |
| | | <select id="getMappingInfo" parameterType="Map" resultType="Map"> |
| | |
| | | </if> |
| | | <if test="name !=null and name != ''"> |
| | | and t.name= #{name} |
| | | </if> |
| | | <if test="nameLike !=null and nameLike != ''"> |
| | | and t.name like concat('%',#{nameLike},'%') |
| | | </if> |
| | | <if test="remark !=null and remark != ''"> |
| | | and t.remark= #{remark} |
| | |
| | | <if test="page != -1 and page != null "> |
| | | limit #{page}, #{row} |
| | | </if> |
| | | |
| | | </select> |
| | | |
| | | |
| | | <!-- 修改映射信息 add by wuxw 2018-07-03 --> |
| | | <update id="updateMappingInfo" parameterType="Map"> |
| | |
| | | <if test="id !=null and id != ''"> |
| | | and t.id= #{id} |
| | | </if> |
| | | |
| | | </update> |
| | | |
| | | <!-- 查询映射数量 add by wuxw 2018-07-03 --> |
| | |
| | | </if> |
| | | <if test="name !=null and name != ''"> |
| | | and t.name= #{name} |
| | | </if> |
| | | <if test="nameLike !=null and nameLike != ''"> |
| | | and t.name like concat('%',#{nameLike},'%') |
| | | </if> |
| | | <if test="remark !=null and remark != ''"> |
| | | and t.remark= #{remark} |
| | |
| | | <if test="key !=null and key != ''"> |
| | | and t.key= #{key} |
| | | </if> |
| | | |
| | | |
| | | </select> |
| | | |
| | | </mapper> |