wang-hao-jie
2022-08-25 57dcc73636bb7d8dce89c808eb8cc988a7512264
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
<?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">
<mapper namespace="com.ruoyi.station.mapper.MjHnweStatusMapper">
    
    <resultMap type="MjHnweStatus" id="MjHnweStatusResult">
        <result property="id"    column="id"    />
        <result property="hnweId"    column="hnwe_id"    />
        <result property="hnweIp"    column="hnwe_ip"    />
        <result property="doorStatus"    column="door_status"    />
        <result property="createTime"    column="create_time"    />
        <result property="updateTime"    column="update_time"    />
        <result property="createBy"    column="create_by"    />
        <result property="updateBy"    column="update_by"    />
        <result property="delFlag"    column="del_flag"    />
    </resultMap>
 
    <sql id="selectMjHnweStatusVo">
        select id, hnwe_id, hnwe_ip, door_status, create_time, update_time, create_by, update_by, del_flag from mj_hnwe_status
    </sql>
 
    <select id="selectMjHnweStatusList" parameterType="MjHnweStatus" resultMap="MjHnweStatusResult">
        <include refid="selectMjHnweStatusVo"/>
        <where>  
            <if test="hnweId != null  and hnweId != ''"> and hnwe_id = #{hnweId}</if>
            <if test="hnweIp != null  and hnweIp != ''"> and hnwe_ip = #{hnweIp}</if>
            <if test="doorStatus != null "> and door_status = #{doorStatus}</if>
        </where>
    </select>
    
    <select id="selectMjHnweStatusById" parameterType="String" resultMap="MjHnweStatusResult">
        <include refid="selectMjHnweStatusVo"/>
        where id = #{id}
    </select>
        
    <insert id="insertMjHnweStatus" parameterType="MjHnweStatus">
        insert into mj_hnwe_status
        <trim prefix="(" suffix=")" suffixOverrides=",">
            <if test="id != null">id,</if>
            <if test="hnweId != null">hnwe_id,</if>
            <if test="hnweIp != null">hnwe_ip,</if>
            <if test="doorStatus != null">door_status,</if>
            <if test="createTime != null">create_time,</if>
            <if test="updateTime != null">update_time,</if>
            <if test="createBy != null">create_by,</if>
            <if test="updateBy != null">update_by,</if>
            <if test="delFlag != null">del_flag,</if>
         </trim>
        <trim prefix="values (" suffix=")" suffixOverrides=",">
            <if test="id != null">#{id},</if>
            <if test="hnweId != null">#{hnweId},</if>
            <if test="hnweIp != null">#{hnweIp},</if>
            <if test="doorStatus != null">#{doorStatus},</if>
            <if test="createTime != null">#{createTime},</if>
            <if test="updateTime != null">#{updateTime},</if>
            <if test="createBy != null">#{createBy},</if>
            <if test="updateBy != null">#{updateBy},</if>
            <if test="delFlag != null">#{delFlag},</if>
         </trim>
    </insert>
 
    <update id="updateMjHnweStatus" parameterType="MjHnweStatus">
        update mj_hnwe_status
        <trim prefix="SET" suffixOverrides=",">
            <if test="hnweId != null">hnwe_id = #{hnweId},</if>
            <if test="hnweIp != null">hnwe_ip = #{hnweIp},</if>
            <if test="doorStatus != null">door_status = #{doorStatus},</if>
            <if test="createTime != null">create_time = #{createTime},</if>
            <if test="updateTime != null">update_time = #{updateTime},</if>
            <if test="createBy != null">create_by = #{createBy},</if>
            <if test="updateBy != null">update_by = #{updateBy},</if>
            <if test="delFlag != null">del_flag = #{delFlag},</if>
        </trim>
        where id = #{id}
    </update>
 
    <delete id="deleteMjHnweStatusById" parameterType="String">
        delete from mj_hnwe_status where id = #{id}
    </delete>
 
    <delete id="deleteMjHnweStatusByIds" parameterType="String">
        delete from mj_hnwe_status where id in 
        <foreach item="id" collection="array" open="(" separator="," close=")">
            #{id}
        </foreach>
    </delete>
 
</mapper>