java110
2023-05-30 0b3ff378a9faaf9d7a4831b7f0de67378fe0dfea
java110-db/src/main/resources/mapper/community/MappingServiceDaoImplMapper.xml
@@ -1,19 +1,22 @@
<?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">
@@ -41,9 +44,7 @@
        <if test="key !=null and key != ''">
            and t.`key`= #{key}
        </if>
    </select>
    <!-- 保存映射信息至 instance表中 add by wuxw 2018-07-03 -->
    <insert id="saveMappingInfoInstance" parameterType="Map">
@@ -69,9 +70,7 @@
        <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">
@@ -106,9 +105,7 @@
        <if test="page != -1 and page != null ">
            limit #{page}, #{row}
        </if>
    </select>
    <!-- 修改映射信息 add by wuxw 2018-07-03 -->
    <update id="updateMappingInfo" parameterType="Map">
@@ -133,7 +130,6 @@
        <if test="id !=null and id != ''">
            and t.id= #{id}
        </if>
    </update>
    <!-- 查询映射数量 add by wuxw 2018-07-03 -->
@@ -146,6 +142,9 @@
        </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}
@@ -162,8 +161,5 @@
        <if test="key !=null and key != ''">
            and t.key= #{key}
        </if>
    </select>
</mapper>