fix: 修改数据库表名
This commit is contained in:
parent
507041620f
commit
97c11dd43e
|
@ -20,7 +20,7 @@ import java.time.LocalDateTime;
|
||||||
@Getter
|
@Getter
|
||||||
@Setter
|
@Setter
|
||||||
@Accessors(chain = true)
|
@Accessors(chain = true)
|
||||||
@TableName("quartz_execute_log")
|
@TableName("log_quartz_execute")
|
||||||
@Schema(name = "QuartzExecuteLog对象", title = "调度任务执行日志", description = "调度任务执行日志")
|
@Schema(name = "QuartzExecuteLog对象", title = "调度任务执行日志", description = "调度任务执行日志")
|
||||||
public class QuartzExecuteLog extends BaseEntity {
|
public class QuartzExecuteLog extends BaseEntity {
|
||||||
|
|
||||||
|
|
|
@ -18,7 +18,7 @@ import lombok.experimental.Accessors;
|
||||||
@Getter
|
@Getter
|
||||||
@Setter
|
@Setter
|
||||||
@Accessors(chain = true)
|
@Accessors(chain = true)
|
||||||
@TableName("quartz_schedulers_group")
|
@TableName("qrtz_schedulers_group")
|
||||||
@Schema(name = "SchedulersGroup对象", title = "任务调度分组", description = "任务调度分组")
|
@Schema(name = "SchedulersGroup对象", title = "任务调度分组", description = "任务调度分组")
|
||||||
public class SchedulersGroup extends BaseEntity {
|
public class SchedulersGroup extends BaseEntity {
|
||||||
|
|
||||||
|
|
|
@ -29,7 +29,7 @@
|
||||||
<select id="selectListByPage" resultType="cn.bunny.dao.entity.quartz.QuartzExecuteLog">
|
<select id="selectListByPage" resultType="cn.bunny.dao.entity.quartz.QuartzExecuteLog">
|
||||||
select
|
select
|
||||||
<include refid="Base_Column_List"/>
|
<include refid="Base_Column_List"/>
|
||||||
from quartz_execute_log
|
from log_quartz_execute
|
||||||
<where>
|
<where>
|
||||||
<if test="dto.jobName != null and dto.jobName != ''">
|
<if test="dto.jobName != null and dto.jobName != ''">
|
||||||
and job_name like CONCAT('%',#{dto.jobName},'%')
|
and job_name like CONCAT('%',#{dto.jobName},'%')
|
||||||
|
@ -56,7 +56,7 @@
|
||||||
<!-- 物理删除调度任务执行日志 -->
|
<!-- 物理删除调度任务执行日志 -->
|
||||||
<delete id="deleteBatchIdsWithPhysics">
|
<delete id="deleteBatchIdsWithPhysics">
|
||||||
delete
|
delete
|
||||||
from quartz_execute_log
|
from log_quartz_execute
|
||||||
where id in
|
where id in
|
||||||
<foreach collection="ids" item="id" open="(" close=")" separator=",">
|
<foreach collection="ids" item="id" open="(" close=")" separator=",">
|
||||||
#{id}
|
#{id}
|
||||||
|
|
|
@ -23,7 +23,7 @@
|
||||||
<select id="selectListByPage" resultType="cn.bunny.dao.entity.quartz.SchedulersGroup">
|
<select id="selectListByPage" resultType="cn.bunny.dao.entity.quartz.SchedulersGroup">
|
||||||
select
|
select
|
||||||
<include refid="Base_Column_List"/>
|
<include refid="Base_Column_List"/>
|
||||||
from quartz_schedulers_group
|
from qrtz_schedulers_group
|
||||||
<where>
|
<where>
|
||||||
<if test="dto.groupName != null and dto.groupName != ''">
|
<if test="dto.groupName != null and dto.groupName != ''">
|
||||||
and group_name like CONCAT('%',#{dto.groupName},'%')
|
and group_name like CONCAT('%',#{dto.groupName},'%')
|
||||||
|
@ -38,7 +38,7 @@
|
||||||
<!-- 物理删除任务调度分组 -->
|
<!-- 物理删除任务调度分组 -->
|
||||||
<delete id="deleteBatchIdsWithPhysics">
|
<delete id="deleteBatchIdsWithPhysics">
|
||||||
delete
|
delete
|
||||||
from quartz_schedulers_group
|
from qrtz_schedulers_group
|
||||||
where id in
|
where id in
|
||||||
<foreach collection="ids" item="id" open="(" close=")" separator=",">
|
<foreach collection="ids" item="id" open="(" close=")" separator=",">
|
||||||
#{id}
|
#{id}
|
||||||
|
|
Loading…
Reference in New Issue