OrdersJob.xml 4.78 KB
<?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.diligrp.orders.dao.OrdersJobDao">

	<!-- orders_job 所有查询列 -->
	<sql id="QUERY_COLUMN_LIST">
		<![CDATA[id,business_key AS businessKey,business_type AS businessType,expire_date AS expireDate,callback_type AS callbackType,callback_hander AS callbackHander]]>
	</sql>

	<!-- orders_job 查询列来源表-->
	<sql id="QUERY_FROM_TABLE"><![CDATA[FROM orders_job]]></sql>
	
	<!-- 全部条件(更多功能可以通过queryData扩展实现)  -->
	<sql id="QUERY_WHERE_CLAUSE">
		<where>
			<if test="id != null and id != ''"><![CDATA[AND id = #{id}]]></if>
			<if test="businessKey != null and businessKey != ''"><![CDATA[AND business_key = #{businessKey}]]></if>
			<if test="businessType != null and businessType != ''"><![CDATA[AND business_type = #{businessType}]]></if>
			<if test="expireDate != null and expireDate != ''"><![CDATA[AND expire_date = #{expireDate}]]></if>
			<if test="callbackType != null and callbackType != ''"><![CDATA[AND callback_type = #{callbackType}]]></if>
			<if test="callbackHander != null and callbackHander != ''"><![CDATA[AND callback_hander = #{callbackHander}]]></if>
		</where>
	</sql>
	
	<!-- 智能排序与分页 -->
	<sql id="QUERY_ORDER_LIMIT_CONDTION">
		<if test="orderField != null and orderField != '' and orderFieldType != null and orderFieldType != ''"><![CDATA[ORDER BY ${orderField} ${orderFieldType}]]></if>
		<if test="startIndex != null and startIndex &gt;= 0 and pageSize != null and pageSize &gt; 0"><![CDATA[LIMIT #{startIndex},#{pageSize}]]></if>
	</sql>

	<!-- 更新列字段,只要不为NULL则更新,除开主键列 -->
	<sql id="UPDATE_COLUMN_SET">
		<set>
			<if test="businessKey != null"><![CDATA[business_key = #{businessKey},]]></if>
			<if test="businessType != null"><![CDATA[business_type = #{businessType},]]></if>
			<if test="expireDate != null"><![CDATA[expire_date = #{expireDate},]]></if>
			<if test="callbackType != null"><![CDATA[callback_type = #{callbackType},]]></if>
			<if test="callbackHander != null"><![CDATA[callback_hander = #{callbackHander},]]></if>
		</set>
	</sql>

	<!-- 插入orders_job记录 -->
	<insert id="insertEntry" parameterType="ordersJob" >
		<![CDATA[
			INSERT INTO orders_job (id,business_key,business_type,expire_date,callback_type,callback_hander)
			VALUES (#{id},#{businessKey},#{businessType},#{expireDate},#{callbackType},#{callbackHander})
		]]>
	</insert>
	
	<!-- 返回插入的编号,在事务开启状态下有效 -->
	<select id="lastSequence" resultType="int"><![CDATA[SELECT LAST_INSERT_ID() AS id]]></select>

	<!-- 删除记录,主键IN(array) -->
	<delete id="deleteByArrayKey" parameterType="java.lang.reflect.Array" >
		<![CDATA[DELETE FROM orders_job WHERE id IN]]>
		<foreach collection="array" item="id" open="(" separator="," close=")">
			<![CDATA[#{id}]]>
		</foreach>
	</delete>

	<!-- 删除,通过条件 -->
	<update id="deleteByCondtion" parameterType="ordersJob" >
		<![CDATA[DELETE FROM orders_job]]>
		<include refid="QUERY_WHERE_CLAUSE"/>
	</update>

	<!-- 修改记录通过主键 -->
	<update id="updateByKey" parameterType="ordersJob" >
		<![CDATA[UPDATE orders_job]]>
		<include refid="UPDATE_COLUMN_SET"/>
		<![CDATA[WHERE id = #{id}]]>
	</update>

	<!-- 查询,通过主键IN(array) -->
	<select id="selectEntryArray" parameterType="java.lang.reflect.Array" resultType="ordersJob">
		<![CDATA[SELECT]]>
		<include refid="QUERY_COLUMN_LIST"/>
		<include refid="QUERY_FROM_TABLE"/>
		<![CDATA[WHERE id IN]]>
		<foreach collection="array" item="id" open="(" separator="," close=")">
			<![CDATA[#{id}]]>
		</foreach>
	</select>

	<!-- 查询,通过条件 -->
	<select id="selectEntryList" parameterType="ordersJob" resultType="ordersJob">
		<![CDATA[SELECT]]>
		<include refid="QUERY_COLUMN_LIST"/>
		<include refid="QUERY_FROM_TABLE"/>
		<include refid="QUERY_WHERE_CLAUSE"/>
		<include refid="QUERY_ORDER_LIMIT_CONDTION"/>
	</select>

	<!-- 总数查询,通过条件 -->
	<select id="selectEntryListCount" parameterType="ordersJob" resultType="int">
		<![CDATA[SELECT COUNT(id) AS dataCount]]>
		<include refid="QUERY_FROM_TABLE"/>
		<include refid="QUERY_WHERE_CLAUSE"/>
	</select>
	
	<!-- 其它SQL语句 -->
	<sql id="QUERYTASK_WHERE_CLAUSE">
		<where>
			<if test="businessType != null and businessType != ''"><![CDATA[AND business_type = #{businessType}]]></if>
			<if test="expireDate != null and expireDate != ''"><![CDATA[AND expire_date <= #{expireDate}]]></if>
		</where>
	</sql>
	<select id="taskList" parameterType="java.util.Map" resultType="ordersJob">
		<![CDATA[SELECT]]>
		<include refid="QUERY_COLUMN_LIST"/>
		<include refid="QUERY_FROM_TABLE"/>
		<include refid="QUERYTASK_WHERE_CLAUSE"/>
		order by id limit #{startRow},#{endRow}
	</select>
	
</mapper>