|
|
|
@ -18,16 +18,24 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
|
|
<result property="updateBy" column="update_by" />
|
|
|
|
|
<result property="updateTime" column="update_time" />
|
|
|
|
|
<result property="remark" column="remark" />
|
|
|
|
|
<result property="ip" column="ip" />
|
|
|
|
|
<result property="state" column="state" />
|
|
|
|
|
<result property="fileUrl" column="file_url" />
|
|
|
|
|
<result property="fileName" column="file_name" />
|
|
|
|
|
</resultMap>
|
|
|
|
|
|
|
|
|
|
<sql id="selectTcTbVo">
|
|
|
|
|
select id, area_id, dep_name, location_name, tb_type, tb_time, create_id, create_by, create_time, update_id, update_by, update_time, remark from tc_tb
|
|
|
|
|
select id, area_id, dep_name, location_name,ip,state,file_url,tb_type,file_name,tb_time, create_id, create_by, create_time, update_id, update_by, update_time, remark from tc_tb
|
|
|
|
|
</sql>
|
|
|
|
|
|
|
|
|
|
<select id="selectTcTbList" parameterType="TcTb" resultMap="TcTbResult">
|
|
|
|
|
<include refid="selectTcTbVo"/>
|
|
|
|
|
<where>
|
|
|
|
|
<if test="areaId != null "> and area_id = #{areaId}</if>
|
|
|
|
|
<if test="ip != null "> and ip = #{ip}</if>
|
|
|
|
|
<if test="state != null "> and state = #{state}</if>
|
|
|
|
|
<if test="fileUrl != null "> and file_url = #{fileUrl}</if>
|
|
|
|
|
<if test="fileName != null "> and file_name = #{fileName}</if>
|
|
|
|
|
<if test="depName != null and depName != ''"> and dep_name like concat('%', #{depName}, '%')</if>
|
|
|
|
|
<if test="locationName != null and locationName != ''"> and location_name like concat('%', #{locationName}, '%')</if>
|
|
|
|
|
<if test="tbType != null "> and tb_type = #{tbType}</if>
|
|
|
|
@ -47,6 +55,10 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
|
|
<trim prefix="(" suffix=")" suffixOverrides=",">
|
|
|
|
|
<if test="areaId != null">area_id,</if>
|
|
|
|
|
<if test="depName != null">dep_name,</if>
|
|
|
|
|
<if test="ip != null">ip,</if>
|
|
|
|
|
<if test="state != null">state,</if>
|
|
|
|
|
<if test="fileUrl != null">file_url,</if>
|
|
|
|
|
<if test="fileName != null">file_name,</if>
|
|
|
|
|
<if test="locationName != null">location_name,</if>
|
|
|
|
|
<if test="tbType != null">tb_type,</if>
|
|
|
|
|
<if test="tbTime != null">tb_time,</if>
|
|
|
|
@ -57,13 +69,17 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
|
|
<if test="updateBy != null">update_by,</if>
|
|
|
|
|
<if test="updateTime != null">update_time,</if>
|
|
|
|
|
<if test="remark != null">remark,</if>
|
|
|
|
|
</trim>
|
|
|
|
|
</trim>
|
|
|
|
|
<trim prefix="values (" suffix=")" suffixOverrides=",">
|
|
|
|
|
<if test="areaId != null">#{areaId},</if>
|
|
|
|
|
<if test="depName != null">#{depName},</if>
|
|
|
|
|
<if test="locationName != null">#{locationName},</if>
|
|
|
|
|
<if test="tbType != null">#{tbType},</if>
|
|
|
|
|
<if test="tbTime != null">#{tbTime},</if>
|
|
|
|
|
<if test="ip != null">#{ip},</if>
|
|
|
|
|
<if test="state != null">#{state},</if>
|
|
|
|
|
<if test="fileUrl != null">#{fileUrl},</if>
|
|
|
|
|
<if test="fileName != null">#{fileName},</if>
|
|
|
|
|
<if test="createId != null">#{createId},</if>
|
|
|
|
|
<if test="createBy != null">#{createBy},</if>
|
|
|
|
|
<if test="createTime != null">#{createTime},</if>
|
|
|
|
@ -71,13 +87,17 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
|
|
<if test="updateBy != null">#{updateBy},</if>
|
|
|
|
|
<if test="updateTime != null">#{updateTime},</if>
|
|
|
|
|
<if test="remark != null">#{remark},</if>
|
|
|
|
|
</trim>
|
|
|
|
|
</trim>
|
|
|
|
|
</insert>
|
|
|
|
|
|
|
|
|
|
<update id="updateTcTb" parameterType="TcTb">
|
|
|
|
|
update tc_tb
|
|
|
|
|
<trim prefix="SET" suffixOverrides=",">
|
|
|
|
|
<if test="areaId != null">area_id = #{areaId},</if>
|
|
|
|
|
<if test="ip != null">ip = #{ip},</if>
|
|
|
|
|
<if test="state != null">state = #{state},</if>
|
|
|
|
|
<if test="fileUrl != null">file_url = #{fileUrl},</if>
|
|
|
|
|
<if test="fileName != null">file_name = #{fileName},</if>
|
|
|
|
|
<if test="depName != null">dep_name = #{depName},</if>
|
|
|
|
|
<if test="locationName != null">location_name = #{locationName},</if>
|
|
|
|
|
<if test="tbType != null">tb_type = #{tbType},</if>
|
|
|
|
|