| | |
| | | <result column="job_group" property="jobGroup"/> |
| | | <result column="job_desc" property="jobDesc"/> |
| | | <result column="add_time" property="addTime"/> |
| | | <result column="update_time" property="updateTime"/> |
| | | <result column="author" property="author"/> |
| | | <result column="alarm_email" property="alarmEmail"/> |
| | | <result column="schedule_type" property="scheduleType"/> |
| | |
| | | <result column="trigger_next_time" property="triggerNextTime"/> |
| | | </resultMap> |
| | | |
| | | |
| | | <!--自定义分页查询--> |
| | | <select id="selectJobInfoPage" resultMap="jobInfoResultMap"> |
| | | select * from xxl_job_info where is_deleted = 0 |
| | | select * from xxl_job_info where 1=1 |
| | | <if test="jobInfo.jobDesc!=null and jobInfo.jobDesc!=''"> |
| | | and job_desc like concat('%',#{jobInfo.jobDesc},'%') |
| | | </if> |
| | | <if test="jobInfo.triggerStatus!=null"> |
| | | and trigger_status = #{jobInfo.triggerStatus} |
| | | </if> |
| | | </select> |
| | | |
| | | |