a0799a7ea3901d79d83283bb47218ed82fc365a7.svn-base 433 B

123456789
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
  3. <mapper namespace="org.jeecg.modules.quartz.mapper.QuartzJobMapper">
  4. <!-- 根据jobClassName查询 -->
  5. <select id="findByJobClassName" resultType="org.jeecg.modules.quartz.entity.QuartzJob">
  6. select * from sys_quartz_job where job_class_name = #{jobClassName}
  7. </select>
  8. </mapper>