<?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.jcdm.main.da.opcuaconfig.mapper.DaOpcuaConfigMapper">
|
|
<resultMap type="DaOpcuaConfig" id="DaOpcuaConfigResult">
|
<result property="id" column="id" />
|
<result property="node" column="node" />
|
<result property="sysTypes" column="sys_types" />
|
<result property="subscribe" column="subscribe" />
|
<result property="rFunction" column="r_function" />
|
<result property="remarks" column="remarks" />
|
<result property="process" column="process" />
|
<result property="processName" column="process_name" />
|
<result property="state" column="state" />
|
</resultMap>
|
|
<sql id="selectDaOpcuaConfigVo">
|
select id, node,sys_types, subscribe, r_function, remarks, process, process_name, state from da_opcua_config
|
</sql>
|
|
<select id="selectDaOpcuaConfigList" parameterType="DaOpcuaConfig" resultMap="DaOpcuaConfigResult">
|
<include refid="selectDaOpcuaConfigVo"/>
|
<where>
|
<if test="node != null and node != ''"> and node = #{node}</if>
|
<if test="sysTypes != null and sysTypes != ''"> and sys_types = #{sysTypes}</if>
|
<if test="rFunction != null and rFunction != ''"> and r_function = #{rFunction}</if>
|
<if test="process != null and process != ''"> and process = #{process}</if>
|
<if test="processName != null and processName != ''"> and process_name like concat('%', #{processName}, '%')</if>
|
<if test="state != null "> and state = #{state}</if>
|
</where>
|
</select>
|
|
<select id="selectDaOpcuaConfigById" parameterType="Long" resultMap="DaOpcuaConfigResult">
|
<include refid="selectDaOpcuaConfigVo"/>
|
where id = #{id}
|
</select>
|
|
<insert id="insertDaOpcuaConfig" parameterType="DaOpcuaConfig" useGeneratedKeys="true" keyProperty="id">
|
insert into da_opcua_config
|
<trim prefix="(" suffix=")" suffixOverrides=",">
|
<if test="node != null and node != ''">node,</if>
|
<if test="sysTypes != null and sysTypes != ''">sys_types,</if>
|
<if test="subscribe != null">subscribe,</if>
|
<if test="rFunction != null and rFunction != ''">r_function,</if>
|
<if test="remarks != null">remarks,</if>
|
<if test="process != null">process,</if>
|
<if test="processName != null">process_name,</if>
|
<if test="state != null">state,</if>
|
</trim>
|
<trim prefix="values (" suffix=")" suffixOverrides=",">
|
<if test="node != null and node != ''">#{node},</if>
|
<if test="sysTypes != null and sysTypes != ''">#{sysTypes},</if>
|
<if test="subscribe != null">#{subscribe},</if>
|
<if test="rFunction != null and rFunction != ''">#{rFunction},</if>
|
<if test="remarks != null">#{remarks},</if>
|
<if test="process != null">#{process},</if>
|
<if test="processName != null">#{processName},</if>
|
<if test="state != null">#{state},</if>
|
</trim>
|
</insert>
|
|
<update id="updateDaOpcuaConfig" parameterType="DaOpcuaConfig">
|
update da_opcua_config
|
<trim prefix="SET" suffixOverrides=",">
|
<if test="node != null and node != ''">node = #{node},</if>
|
<if test="sysTypes != null and sysTypes != ''">sys_types = #{sysTypes},</if>
|
<if test="subscribe != null">subscribe = #{subscribe},</if>
|
<if test="rFunction != null and rFunction != ''">r_function = #{rFunction},</if>
|
<if test="remarks != null">remarks = #{remarks},</if>
|
<if test="process != null">process = #{process},</if>
|
<if test="processName != null">process_name = #{processName},</if>
|
<if test="state != null">state = #{state},</if>
|
</trim>
|
where id = #{id}
|
</update>
|
|
<delete id="deleteDaOpcuaConfigById" parameterType="Long">
|
delete from da_opcua_config where id = #{id}
|
</delete>
|
|
<delete id="deleteDaOpcuaConfigByIds" parameterType="String">
|
delete from da_opcua_config where id in
|
<foreach item="id" collection="array" open="(" separator="," close=")">
|
#{id}
|
</foreach>
|
</delete>
|
</mapper>
|