riku
2019-09-23 14ce5d2ccfae554497763da846ffb9eb39cd6d34
src/main/kotlin/com/flightfeather/obd/repository/CarLogoutRepository.kt
@@ -1,5 +1,6 @@
package com.flightfeather.obd.repository
import com.flightfeather.obd.lightshare.bean.CarLogoutVo
import com.flightfeather.obd.socket.bean.ObdPackageData
/**
@@ -12,4 +13,9 @@
     * 保存 车辆登出入信息
     */
    fun saveCarLogout(packageData: ObdPackageData): Boolean
    /**
     * 根据终端设备码获取登出数据
     */
    fun getLogoutData(deviceCode: String, pageNum: Int?, pageSize: Int?, startTime: String?, endTime: String?): List<CarLogoutVo>
}