仪表盘
版本库
文件存储
活动
搜索
登录
main
/
underway-spring
走航监测后台
概况
操作记录
提交次数
目录
文档
分支
对比
blame
|
历史
|
原始文档
删除原obd_data表的数据存储
riku
2019-09-23
5c570cef0cdefd4103b0d447f6505d4430807128
[underway-spring.git]
/
src
/
main
/
kotlin
/
com
/
flightfeather
/
obd
/
repository
/
ObdUserRepository.kt
1
2
3
4
5
6
7
8
9
10
11
12
13
package com.flightfeather.obd.repository
import com.flightfeather.obd.lightshare.bean.ObdUserVo
/**
* @author riku
* Date: 2019/9/6
*/
interface ObdUserRepository {
fun getUserInfo(userId: String): ObdUserVo?
}