Commit 9e89eae3 authored by lcl's avatar lcl

u

parent ce88418b
...@@ -28,13 +28,10 @@ ...@@ -28,13 +28,10 @@
from business_backlog from business_backlog
</sql> </sql>
<select id="selectBusinessBacklogList" parameterType="com.dsk.system.domain.business.vo.BusinessBacklogListVo" <select id="selectBusinessBacklogList" parameterType="com.dsk.system.domain.business.dto.BusinessBacklogListDto"
resultMap="BusinessBacklogResult"> resultType="com.dsk.system.domain.business.vo.BusinessBacklogListVo">
<include refid="selectBusinessBacklogVo"/> <include refid="selectBusinessBacklogVo"/>
where business_id = #{businessId} where business_id = #{businessId}
<if test="target != null and target != ''">and target = #{target}</if>
<if test="task != null and task != ''">and task = #{task}</if>
<if test="finishTime != null ">and finish_time = #{finishTime}</if>
<if test="state != null "> and state = #{state} </if> <if test="state != null "> and state = #{state} </if>
<if test="startTime != null "> and due_time &gt;= #{startTime} </if> <if test="startTime != null "> and due_time &gt;= #{startTime} </if>
<if test="endTime != null "> and due_time &lt;= #{endTime} </if> <if test="endTime != null "> and due_time &lt;= #{endTime} </if>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment