RoleServiceImpl.java
541 Bytes
package com.uccc.admin.service.impl;
import com.uccc.admin.mapper.RoleMapper;
import com.uccc.admin.service.RoleService;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
/**
* Created by bert on 2021-09-13 22:16
*/
@Service
public class RoleServiceImpl implements RoleService {
@Autowired
private RoleMapper roleMapper;
@Override
public int createUserRoleByUserId(Long userId, int roleId) {
return roleMapper.createUserRole(userId, roleId);
}
}