| | |
| | | <select id="selectTaskinfoPlanPage" resultMap="taskinfoPlanResultMap"> |
| | | select id,no,title,type,start_time,end_time,content,ST_ASTEXT(route_range) as route_range, |
| | | create_user,create_time,update_user,update_time,status,is_deleted |
| | | from ins_taskinfo_plan where is_deleted = 0 |
| | | from ins_taskinfo_plan |
| | | where is_deleted = 0 |
| | | <if test="taskinfoPlan.no !=null and taskinfoPlan.no != ''"> |
| | | AND no like CONCAT('%',#{taskinfoPlan.no},'%') |
| | | </if> |
| | | <if test="taskinfoPlan.title !=null and taskinfoPlan.title != ''"> |
| | | AND title like CONCAT('%',#{taskinfoPlan.title},'%') |
| | | </if> |
| | | </select> |
| | | |
| | | <select id="getMaxNo" resultMap="taskinfoPlanResultMap"> |