1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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)
    }
}