RoleMapper.java
501 Bytes
package com.uccc.admin.mapper;
import org.apache.ibatis.annotations.Insert;
import org.apache.ibatis.annotations.Param;
/**
* Created by bert on 2021-09-13 22:23
*/
public interface RoleMapper {
@Insert({
"<script>",
"insert into user_role (",
"role_id, user_id, cts, uts ) values (",
"#{role_id}, #{userId}, now(), now() )",
"</script>",
})
int createUserRole(@Param("userId") Long userId, @Param("roleId") int roleId);
}