fix: 176yunxuan 漏洞补丁
Some checks failed
Jsl-Team/JSL_OrganizeInternalOA/pipeline/head There was a failure building this commit

This commit is contained in:
筱锋xiao_lfeng 2024-01-24 20:42:20 +08:00
parent c9dfeabeb4
commit 93dbfb62f4
Signed by: XiaoLFeng
GPG Key ID: F693AA12AABBFA87

View File

@ -12,7 +12,7 @@ public interface RoleMapper {
@Insert("insert into organize_oa.oa_role_user (uid, rid) VALUE (#{uid},#{rid})")
void roleAddUser(Long uid, Long rid);
@Select("INSERT INTO organize_oa.oa_role (role_name,display_name) VALUES (#{roleName,display_name})")
@Select("INSERT INTO organize_oa.oa_role (role_name,display_name) VALUES (#{roleName}, ${display_name})")
void roleAdd(RoleDO roleDO);
@Delete("delete from organize_oa.oa_role_user where uid=#{uid}")