com.zznote.basecommon.service.impl.TUserRoleServiceImpl Maven / Gradle / Ivy
The newest version!
package com.zznote.basecommon.service.impl;
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import com.zznote.basecommon.dao.TUserRoleDao;
import com.zznote.basecommon.entity.system.TUserRole;
import com.zznote.basecommon.service.TUserRoleService;
import org.springframework.stereotype.Service;
import java.util.List;
@Service("tUserRoleService")
public class TUserRoleServiceImpl extends ServiceImpl implements TUserRoleService {
@Override
public List selectUserIdsByRoleId(Long roleId) {
return baseMapper.selectUserIdsByRoleId(roleId);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy