| | |
| | | <select id="selectApsWorkEventList" parameterType="ApsWorkEvent" resultMap="ApsWorkEventResult"> |
| | | <include refid="selectApsWorkEventVo"/> |
| | | <where> |
| | | <if test="description != null and description != ''"> and description like concat('%', #{description}, '%')</if> |
| | | <if test="description != null and description != ''"> and description like '%' || #{description} || '%'</if> |
| | | <if test="duration != null and duration != ''"> and duration = #{duration}</if> |
| | | <if test="startDate != null "> and start_date = #{startDate}</if> |
| | | <if test="endDate != null "> and end_date = #{endDate}</if> |