fix: Mapper 文件错误

master
okayliao 6 years ago committed by Limy
parent d79b4ab676
commit 60ba44bf88

@ -1,8 +1,9 @@
package com.ruoyi.quartz.mapper;
import java.util.List;
import com.ruoyi.quartz.domain.SysJobLog;
import java.util.List;
/**
*
*
@ -18,6 +19,13 @@ public interface SysJobLogMapper
*/
public List<SysJobLog> selectJobLogList(SysJobLog jobLog);
/**
*
*
* @return
*/
public List<SysJobLog> selectJobLogAll();
/**
* ID
*

@ -1,8 +1,9 @@
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 deleteJobLogByIds(Long[] ids);
public int deleteJobByIds(Long[] ids);
/**
*

@ -42,7 +42,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
</where>
</select>
<select id="selectJobAll" resultMap="SysJobLogResult">
<select id="selectJobLogAll" resultMap="SysJobLogResult">
<include refid="selectJobLogVo"/>
</select>

@ -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="detpId" column="dept_id" />
<result property="deptId" 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=#{detpId}
select count(1) from sys_role_dept where dept_id=#{deptId}
</select>
<delete id="deleteRoleDept" parameterType="Long">

Loading…
Cancel
Save