This commit is contained in:
2023-05-11 17:29:32 +08:00
parent 076a8aed70
commit 101e515922
26 changed files with 463 additions and 7 deletions

View File

@ -0,0 +1,10 @@
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE mapper
PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
"http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="com.qiaoba.module.system.mapper.SysRoleDeptMapper">
<delete id="deleteByRoleId">
delete from sys_role_dept where role_id = #{roleId}
</delete>
</mapper>