guang
2023-04-23 9e1c8d19bbca288b74464e90b75c9c1fe710ec1e
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE mapper
PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
"http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<!-- namespace:该mapper.xml映射文件的 唯一标识 -->
<mapper namespace="com.hx.other.service.dao.mapper.SqlQueryTempMapper">
 
    <!-- 整个实体类修改,表字段=实体类字段-->
    <sql id="Update_Column_All">
        <trim prefixOverrides=",">
            ,content = #{content},sqlStr = #{sqlStr},isUp = #{isUp},isDel = #{isDel},createTime = #{createTime},editTime = #{editTime}
        </trim>
    </sql>
     
    <!--  后续通过  namespace.id-->
    <!--parameterType:输入参数的类型
    resultType:查询返回结果值的类型  ,返回类型  -->
    <insert id="insert" parameterType="com.hx.other.service.model.SqlQueryTemp">
        <selectKey keyProperty="id" resultType="String" order="BEFORE">
               select replace(uuid(),'-','') from dual
        </selectKey>
        insert into sql_query_temp (id,content,sqlStr,isUp,isDel,createTime,editTime)  values (#{id},#{content},#{sqlStr},#{isUp},#{isDel},#{createTime},#{editTime})
    </insert>
 
    <insert id="insertById" parameterType="com.hx.other.service.model.SqlQueryTemp">
        insert into sql_query_temp (id,content,sqlStr,isUp,isDel,createTime,editTime)  values (#{id},#{content},#{sqlStr},#{isUp},#{isDel},#{createTime},#{editTime})
    </insert>
 
    <select id="selectList" resultType="com.hx.other.service.model.SqlQueryTemp" parameterType="com.hx.mybatisTool.SqlSentence" >
        ${sqlSentence}
    </select>
 
    <select id="selectListMap" resultType="java.util.Map" parameterType="com.hx.mybatisTool.SqlSentence" >
            ${sqlSentence}
    </select>
 
    <select id="selectOne" resultType="com.hx.other.service.model.SqlQueryTemp" parameterType="com.hx.mybatisTool.SqlSentence" >
        ${sqlSentence}
    </select>
 
    <select id="selectOneMap" resultType="java.util.Map" parameterType="com.hx.mybatisTool.SqlSentence" >
            ${sqlSentence}
    </select>
 
    <select id="selectCount" resultType="int" parameterType="com.hx.mybatisTool.SqlSentence" >
            select
                COUNT(*)
            from sql_query_temp
                WHERE ${sqlSentence}
    </select>
 
    <select id="selectCountSql" resultType="int" parameterType="com.hx.mybatisTool.SqlSentence" >
            ${sqlSentence}
     </select>
 
    <select id="selectOneByKey" resultType="com.hx.other.service.model.SqlQueryTemp" parameterType="java.lang.Object" >
        select 
            id,content,sqlStr,isUp,isDel,createTime,editTime
        from sql_query_temp
        WHERE id = #{value}
    </select>
 
    <select id="selectOneByKeyBlob" resultType="com.hx.other.service.model.SqlQueryTemp" parameterType="java.lang.Object" >
        select 
            id,content,sqlStr,isUp,isDel,createTime,editTime
        from sql_query_temp
        WHERE id = #{value}
    </select>
 
    <update id="updateWhere" parameterType="com.hx.mybatisTool.SqlSentence">
        update
            sql_query_temp
        SET ${sqlSentence}
    </update>
 
    <update id="updateAll" parameterType="com.hx.other.service.model.SqlQueryTemp">
        update sql_query_temp
            SET <include refid="Update_Column_All"/>
        WHERE id = #{id}
    </update>
 
    <delete id="deleteWhere"  parameterType="com.hx.mybatisTool.SqlSentence">
        delete from sql_query_temp WHERE ${sqlSentence}
    </delete>
 
    <delete id="deleteById"  parameterType="java.lang.Object">
        delete from sql_query_temp WHERE id = #{value}
    </delete>
    
    <select id="selectByContent" parameterType="java.lang.String" resultType="java.lang.String">
        select
            sqlStr
        from sql_query_temp
        WHERE isDel = 0 and isUp = 1 and content = #{value}
    </select>
</mapper>