Merge branch 'master' of gitlab.navinfo.com:CollectVehicle/OneMapQS

This commit is contained in:
2023-05-04 11:07:46 +08:00
56 changed files with 1290 additions and 82 deletions

View File

@@ -0,0 +1,23 @@
package com.navinfo.omqs.bean
import java.io.Serializable
class ChatMsgEntity : Serializable, Cloneable {
var voiceUri //声音存储地址
: String? = null
var voiceTimeLong //声音时间长度
: String? = null
var name //声音名字
: String? = null
var isDelete //是否被删除
= false
@kotlin.Throws(CloneNotSupportedException::class)
public override fun clone(): Any {
return super.clone()
}
companion object {
private val TAG: String = ChatMsgEntity::class.java.getSimpleName()
}
}