Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
F
fgqyxxlr
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
yaru
fgqyxxlr
Commits
262ee4eb
Commit
262ee4eb
authored
Jan 22, 2019
by
okayliao
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix: Mapper 文件错误
parent
00a10ed8
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
15 additions
and
6 deletions
+15
-6
ruoyi-quartz/src/main/java/com/ruoyi/quartz/mapper/SysJobLogMapper.java
+9
-1
ruoyi-quartz/src/main/java/com/ruoyi/quartz/mapper/SysJobMapper.java
+3
-2
ruoyi-quartz/src/main/resources/mapper/quartz/SysJobLogMapper.xml
+1
-1
ruoyi-system/src/main/resources/mapper/system/SysRoleDeptMapper.xml
+2
-2
No files found.
ruoyi-quartz/src/main/java/com/ruoyi/quartz/mapper/SysJobLogMapper.java
View file @
262ee4eb
package
com
.
ruoyi
.
quartz
.
mapper
;
import
java.util.List
;
import
com.ruoyi.quartz.domain.SysJobLog
;
import
java.util.List
;
/**
* 调度任务日志信息 数据层
*
...
...
@@ -19,6 +20,13 @@ public interface SysJobLogMapper
public
List
<
SysJobLog
>
selectJobLogList
(
SysJobLog
jobLog
);
/**
* 查询所有调度任务日志
*
* @return 调度任务日志列表
*/
public
List
<
SysJobLog
>
selectJobLogAll
();
/**
* 通过调度任务日志ID查询调度信息
*
* @param jobLogId 调度任务日志ID
...
...
ruoyi-quartz/src/main/java/com/ruoyi/quartz/mapper/SysJobMapper.java
View file @
262ee4eb
package
com
.
ruoyi
.
quartz
.
mapper
;
import
java.util.List
;
import
com.ruoyi.quartz.domain.SysJob
;
import
java.util.List
;
/**
* 调度任务信息 数据层
*
...
...
@@ -47,7 +48,7 @@ public interface SysJobMapper
* @param ids 需要删除的数据ID
* @return 结果
*/
public
int
deleteJob
Log
ByIds
(
Long
[]
ids
);
public
int
deleteJobByIds
(
Long
[]
ids
);
/**
* 修改调度任务信息
...
...
ruoyi-quartz/src/main/resources/mapper/quartz/SysJobLogMapper.xml
View file @
262ee4eb
...
...
@@ -42,7 +42,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
</where>
</select>
<select
id=
"selectJobAll"
resultMap=
"SysJobLogResult"
>
<select
id=
"selectJob
Log
All"
resultMap=
"SysJobLogResult"
>
<include
refid=
"selectJobLogVo"
/>
</select>
...
...
ruoyi-system/src/main/resources/mapper/system/SysRoleDeptMapper.xml
View file @
262ee4eb
...
...
@@ -6,7 +6,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<resultMap
type=
"SysRoleDept"
id=
"SysRoleDeptResult"
>
<result
property=
"roleId"
column=
"role_id"
/>
<result
property=
"de
tp
Id"
column=
"dept_id"
/>
<result
property=
"de
pt
Id"
column=
"dept_id"
/>
</resultMap>
<delete
id=
"deleteRoleDeptByRoleId"
parameterType=
"Long"
>
...
...
@@ -14,7 +14,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
</delete>
<select
id=
"selectCountRoleDeptByDeptId"
resultType=
"Integer"
>
select count(1) from sys_role_dept where dept_id=#{de
tpId}
select count(1) from sys_role_dept where dept_id=#{de
ptId}
</select>
<delete
id=
"deleteRoleDept"
parameterType=
"Long"
>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment