Merge branch 'master' of gitlab.navinfo.com:CollectVehicle/OneMapQS
This commit is contained in:
23
app/src/main/java/com/navinfo/omqs/bean/ChatMsgEntity.kt
Normal file
23
app/src/main/java/com/navinfo/omqs/bean/ChatMsgEntity.kt
Normal 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()
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user