| | |
| | | <if test="taskinfoPlan.title !=null and taskinfoPlan.title != ''"> |
| | | AND title like CONCAT('%',#{taskinfoPlan.title},'%') |
| | | </if> |
| | | <if test="taskinfoPlan.startCreateTime !=null and taskinfoPlan.startCreateTime !=''"> |
| | | AND DATE_FORMAT(create_time,'%Y-%m-%d') >= #{taskinfoPlan.startCreateTime} |
| | | </if> |
| | | <if test="taskinfoPlan.endCreateTime !=null and taskinfoPlan.endCreateTime !=''"> |
| | | AND DATE_FORMAT(create_time,'%Y-%m-%d') <= #{taskinfoPlan.endCreateTime} |
| | | </if> |
| | | </select> |
| | | |
| | | <select id="getMaxNo" resultMap="taskinfoPlanResultMap"> |