fixed "default constructor not found."
This commit is contained in:
@@ -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;
|
||||
}
|
@@ -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? = "",
|
||||
)
|
Reference in New Issue
Block a user