| | |
| | | <if test="checkWay != null"> |
| | | and check_way like concat('%',#{checkWay},'%') |
| | | </if> |
| | | <if test="createDate != null"> |
| | | and create_date >= #{createDate} |
| | | </if> |
| | | <if test="updateDate != null"> |
| | | and #{updateDate} >= update_date |
| | | </if> |
| | | order by create_date desc |
| | | </where> |
| | | </select> |
| | |
| | | <if test="isReject != null"> |
| | | and is_reject = #{isReject} |
| | | </if> |
| | | <if test="createDate != null"> |
| | | and create_date >= #{createDate} |
| | | </if> |
| | | <if test="updateDate != null"> |
| | | and #{updateDate} >= update_date |
| | | </if> |
| | | order by create_date desc |
| | | </where> |
| | | </select> |
| | |
| | | <if test="taskContent != null"> |
| | | and task_content like concat('%',#{taskContent},'%') |
| | | </if> |
| | | <if test="createDate != null"> |
| | | and create_date >= #{createDate} |
| | | </if> |
| | | <if test="updateDate != null"> |
| | | and #{updateDate} >= update_date |
| | | </if> |
| | | order by create_date desc |
| | | </where> |
| | | </select> |