fixed "default constructor not found."

This commit is contained in:
wzq
2023-09-27 22:14:43 +08:00
parent 27f5931d30
commit 888ee9dc4b
2 changed files with 16 additions and 12 deletions

View File

@@ -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;
}

View File

@@ -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? = "",
)