xiebin
2022-09-29 b26bb88a280687437ecac93544edc7e00e89b1fd
src/main/java/org/springblade/modules/taskinfo/mapper/TaskinfoPlanMapper.xml
@@ -34,6 +34,12 @@
        <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') &gt;= #{taskinfoPlan.startCreateTime}
        </if>
        <if test="taskinfoPlan.endCreateTime !=null and taskinfoPlan.endCreateTime !=''">
            AND DATE_FORMAT(create_time,'%Y-%m-%d') &lt;= #{taskinfoPlan.endCreateTime}
        </if>
    </select>
    <select id="getMaxNo" resultMap="taskinfoPlanResultMap">