[M1] 司机端还车时间修复
This commit is contained in:
@@ -1,12 +1,10 @@
|
||||
package com.mogo.och.common.module.biz.common.socketmessage.data
|
||||
|
||||
import com.mogo.och.common.module.biz.common.socketmessage.OCHSocketMessageManager.msgOperateDoorType
|
||||
|
||||
/**
|
||||
* @author: wangmingjun
|
||||
* @date: 2023/2/25
|
||||
*/
|
||||
data class OperateDoorMsg(
|
||||
var orderNo: String,
|
||||
var message: String
|
||||
):DataBaseMsg(msgOperateDoorType) //{"orderNo":"","message":""}
|
||||
var message: String,
|
||||
var pushTimeStamp: Long = System.currentTimeMillis() // 消息下发时间戳
|
||||
) //{"orderNo":"","message":""}
|
||||
|
||||
@@ -8,5 +8,6 @@ import com.mogo.och.common.module.biz.common.socketmessage.OCHSocketMessageManag
|
||||
*/
|
||||
data class OrderCloseMsg(
|
||||
var orderNo: String,
|
||||
var message: String
|
||||
):DataBaseMsg(msgOrderClosedType) //{"orderNo":"","message":""}
|
||||
var message: String,
|
||||
var pushTimeStamp: Long = System.currentTimeMillis() // 消息下发时间戳
|
||||
)
|
||||
|
||||
@@ -1,13 +1,11 @@
|
||||
package com.mogo.och.common.module.biz.common.socketmessage.data
|
||||
|
||||
import com.mogo.och.common.module.biz.common.socketmessage.OCHSocketMessageManager.msgMonitorType
|
||||
|
||||
/**
|
||||
* @author: wangmingjun
|
||||
* @date: 2023/2/25
|
||||
*/
|
||||
data class SystemMsg(
|
||||
var context: String,
|
||||
var screenList: MutableList<Int>
|
||||
):DataBaseMsg(msgMonitorType) // {"context":"","screenList":[]} 1:司机屏 2:乘客屏
|
||||
var screenList: MutableList<Int>,
|
||||
var pushTimeStamp: Long = System.currentTimeMillis() // 消息下发时间戳
|
||||
)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user