riku
2020-06-02 9a5f9bfc4f4b153dd0175c63f563d8047e1e2515
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package com.flightfeather.uav.lightshare.service.impl
 
import com.flightfeather.uav.lightshare.bean.ObdUserVo
import com.flightfeather.uav.lightshare.service.ObdUserService
import com.flightfeather.uav.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)
    }
}