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