package com.flightfeather.obd.lightshare.service.impl
|
|
import com.flightfeather.obd.lightshare.bean.ObdUserVo
|
import com.flightfeather.obd.lightshare.service.ObdUserService
|
import com.flightfeather.obd.repository.ObdUserRepository
|
import org.springframework.stereotype.Service
|
|
/**
|
* @author riku
|
* Date: 2019/9/6
|
*/
|
@Service
|
class ObdUserServiceImpl(val userRepository: ObdUserRepository) :ObdUserService{
|
|
override fun getUserInfo(userId: String): ObdUserVo? {
|
return userRepository.getUserInfo(userId)
|
}
|
}
|