Newer
Older
newfiber-data-adapter / src / main / java / org / springnewfiber / dataadapter / sswj / mapper / SqHdSrMapper.xml
<?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="org.springnewfiber.dataadapter.sswj.mapper.SqHdSrMapper">

    <!-- 通用查询映射结果 -->
    <resultMap id="SqHdSrResultMap" type="org.springnewfiber.dataadapter.sswj.entity.SqHdSr">
        <result column="DATA_UP_UUID" property="dataUpUuid"/>
        <result column="YMDHM" property="ymdhm"/>
        <result column="ZR" property="zr"/>
        <result column="Q" property="q"/>
        <result column="ZRTEND" property="zrtend"/>
        <result column="DATA_UP_TIME" property="dataUpTime"/>
        <result column="DATA_UP_STATUS" property="dataUpStatus"/>
    </resultMap>

   	<!-- 通用查询结果列 -->
	<sql id="Base_Column_List">
    	, t.DATA_UP_UUID
    	, t.YMDHM
    	, t.ZR
    	, t.Q
    	, t.ZRTEND
    	, t.DATA_UP_TIME
    	, t.DATA_UP_STATUS
	</sql>

	<sql id="Where_Condition">
		<if test="request.dataUpUuid != null and request.dataUpUuid != ''">
			and t.DATA_UP_UUID = #{request.dataUpUuid}
		</if>
		<if test="request.ymdhm != null and request.ymdhm != ''">
			and t.YMDHM = #{request.ymdhm}
		</if>
		<if test="request.zr != null and request.zr != ''">
			and t.ZR = #{request.zr}
		</if>
		<if test="request.q != null and request.q != ''">
			and t.Q = #{request.q}
		</if>
		<if test="request.zrtend != null and request.zrtend != ''">
			and t.ZRTEND = #{request.zrtend}
		</if>
		<if test="request.dataUpTime != null and request.dataUpTime != ''">
			and t.DATA_UP_TIME = #{request.dataUpTime}
		</if>
		<if test="request.dataUpStatus != null and request.dataUpStatus != ''">
			and t.DATA_UP_STATUS = #{request.dataUpStatus}
		</if>
	</sql>

    <select id="selectByCondition" resultMap="SqHdSrResultMap">
        select
        <include refid="Base_Column_List"/>
        from whsw_sq_hd_sr t
		where t.is_deleted = 0
		<include refid="Where_Condition"/>
    </select>
    
</mapper>