SysJobMapper.xml 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108
  1. <?xml version="1.0" encoding="UTF-8" ?>
  2. <!DOCTYPE mapper
  3. PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
  4. "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
  5. <mapper namespace="com.ruoyi.quartz.mapper.SysJobMapper">
  6. <resultMap type="SysJob" id="SysJobResult">
  7. <id property="jobId" column="job_id" />
  8. <result property="jobName" column="job_name" />
  9. <result property="jobGroup" column="job_group" />
  10. <result property="methodName" column="method_name" />
  11. <result property="methodParams" column="method_params" />
  12. <result property="cronExpression" column="cron_expression" />
  13. <result property="misfirePolicy" column="misfire_policy" />
  14. <result property="status" column="status" />
  15. <result property="createBy" column="create_by" />
  16. <result property="createTime" column="create_time" />
  17. <result property="updateBy" column="update_by" />
  18. <result property="updateTime" column="update_time" />
  19. <result property="remark" column="remark" />
  20. </resultMap>
  21. <sql id="selectJobVo">
  22. select job_id, job_name, job_group, method_name, method_params, cron_expression, misfire_policy, status, create_by, create_time, remark
  23. from sys_job
  24. </sql>
  25. <select id="selectJobList" parameterType="SysJob" resultMap="SysJobResult">
  26. <include refid="selectJobVo"/>
  27. <where>
  28. <if test="jobName != null and jobName != ''">
  29. AND job_name like concat('%', #{jobName}, '%')
  30. </if>
  31. <if test="status != null and status != ''">
  32. AND status = #{status}
  33. </if>
  34. <if test="methodName != null and methodName != ''">
  35. AND method_name like concat('%', #{methodName}, '%')
  36. </if>
  37. </where>
  38. </select>
  39. <select id="selectJobAll" resultMap="SysJobResult">
  40. <include refid="selectJobVo"/>
  41. </select>
  42. <select id="selectJobById" parameterType="Long" resultMap="SysJobResult">
  43. <include refid="selectJobVo"/>
  44. where job_id = #{jobId}
  45. </select>
  46. <delete id="deleteJobById" parameterType="Long">
  47. delete from sys_job where job_id = #{jobId}
  48. </delete>
  49. <delete id="deleteJobByIds" parameterType="Long">
  50. delete from sys_job where job_id in
  51. <foreach collection="array" item="jobId" open="(" separator="," close=")">
  52. #{jobId}
  53. </foreach>
  54. </delete>
  55. <update id="updateJob" parameterType="SysJob">
  56. update sys_job
  57. <set>
  58. <if test="jobName != null and jobName != ''">job_name = #{jobName},</if>
  59. <if test="jobGroup != null and jobGroup != ''">job_group = #{jobGroup},</if>
  60. <if test="methodName != null and methodName != ''">method_name = #{methodName},</if>
  61. <if test="methodParams != null">method_params = #{methodParams},</if>
  62. <if test="cronExpression != null and cronExpression != ''">cron_expression = #{cronExpression},</if>
  63. <if test="misfirePolicy != null and misfirePolicy != ''">misfire_policy = #{misfirePolicy},</if>
  64. <if test="status !=null">status = #{status},</if>
  65. <if test="remark != null and remark != ''">remark = #{remark},</if>
  66. <if test="updateBy != null and updateBy != ''">update_by = #{updateBy},</if>
  67. update_time = sysdate()
  68. </set>
  69. where job_id = #{jobId}
  70. </update>
  71. <insert id="insertJob" parameterType="SysJob" useGeneratedKeys="true" keyProperty="jobId">
  72. insert into sys_job(
  73. <if test="jobId != null and jobId != 0">job_id,</if>
  74. <if test="jobName != null and jobName != ''">job_name,</if>
  75. <if test="jobGroup != null and jobGroup != ''">job_group,</if>
  76. <if test="methodName != null and methodName != ''">method_name,</if>
  77. <if test="methodParams != null and methodParams != ''">method_params,</if>
  78. <if test="cronExpression != null and cronExpression != ''">cron_expression,</if>
  79. <if test="misfirePolicy != null and misfirePolicy != ''">misfire_policy,</if>
  80. <if test="status != null and status != ''">status,</if>
  81. <if test="remark != null and remark != ''">remark,</if>
  82. <if test="createBy != null and createBy != ''">create_by,</if>
  83. create_time
  84. )values(
  85. <if test="jobId != null and jobId != 0">#{jobId},</if>
  86. <if test="jobName != null and jobName != ''">#{jobName},</if>
  87. <if test="jobGroup != null and jobGroup != ''">#{jobGroup},</if>
  88. <if test="methodName != null and methodName != ''">#{methodName},</if>
  89. <if test="methodParams != null and methodParams != ''">#{methodParams},</if>
  90. <if test="cronExpression != null and cronExpression != ''">#{cronExpression},</if>
  91. <if test="misfirePolicy != null and misfirePolicy != ''">#{misfirePolicy},</if>
  92. <if test="status != null and status != ''">#{status},</if>
  93. <if test="remark != null and remark != ''">#{remark},</if>
  94. <if test="createBy != null and createBy != ''">#{createBy},</if>
  95. sysdate()
  96. )
  97. </insert>
  98. </mapper>