|
@@ -4,6 +4,7 @@ import com.alvin.db.entity.AccessRole;
|
|
import com.alvin.db.mapper.AccessRoleMapper;
|
|
import com.alvin.db.mapper.AccessRoleMapper;
|
|
import com.alvin.db.service.IAccessRoleService;
|
|
import com.alvin.db.service.IAccessRoleService;
|
|
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
|
|
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
|
|
|
|
+import org.springframework.beans.factory.annotation.Autowired;
|
|
import org.springframework.stereotype.Service;
|
|
import org.springframework.stereotype.Service;
|
|
|
|
|
|
/**
|
|
/**
|
|
@@ -17,4 +18,8 @@ import org.springframework.stereotype.Service;
|
|
@Service
|
|
@Service
|
|
public class AccessRoleServiceImpl extends ServiceImpl<AccessRoleMapper, AccessRole> implements IAccessRoleService {
|
|
public class AccessRoleServiceImpl extends ServiceImpl<AccessRoleMapper, AccessRole> implements IAccessRoleService {
|
|
|
|
|
|
|
|
+ @Autowired
|
|
|
|
+ private AccessRoleMapper accessRoleMapper;
|
|
|
|
+
|
|
|
|
+
|
|
}
|
|
}
|