diff --git a/core/src/main/java/com/yizhuan/xchat_android_core/im/custom/bean/NotifyH5Info.java b/core/src/main/java/com/yizhuan/xchat_android_core/im/custom/bean/NotifyH5Info.java new file mode 100644 index 000000000..51d934682 --- /dev/null +++ b/core/src/main/java/com/yizhuan/xchat_android_core/im/custom/bean/NotifyH5Info.java @@ -0,0 +1,16 @@ +package com.yizhuan.xchat_android_core.im.custom.bean; + +import lombok.Data; + +@Data +public class NotifyH5Info { + + private int roomUid; + + /** + * 飘屏类型 0 房间静态飘屏 1 全服动态飘屏 + */ + private int floatingType; + + private String content; +} diff --git a/core/src/main/java/com/yizhuan/xchat_android_core/im/custom/bean/NotifyH5Info.kt b/core/src/main/java/com/yizhuan/xchat_android_core/im/custom/bean/NotifyH5Info.kt deleted file mode 100644 index af032cc4a..000000000 --- a/core/src/main/java/com/yizhuan/xchat_android_core/im/custom/bean/NotifyH5Info.kt +++ /dev/null @@ -1,12 +0,0 @@ -package com.yizhuan.xchat_android_core.im.custom.bean - -class NotifyH5Info ( - val roomUid: Int? = 0, - - /** - * 飘屏类型 0 房间静态飘屏 1 全服动态飘屏 - */ - val floatingType: Int? = 0, - - val content: String? = "", -) \ No newline at end of file