升级OAID SDK

This commit is contained in:
oujunhui
2020-06-09 11:52:57 +08:00
parent de649b1476
commit 00aa2822af
8 changed files with 88 additions and 56 deletions

View File

@@ -13,9 +13,12 @@ import lombok.Getter;
*/
public class OpenSignInAttachment extends CustomAttachment {
@Getter
private ImNotice imNotice;
public ImNotice getImNotice() {
return imNotice;
}
public OpenSignInAttachment(int first, int second) {
super(first, second);
}

View File

@@ -8,11 +8,26 @@ import lombok.Data;
* 提醒,{@link com.yizhuan.xchat_android_core.im.custom.bean.OpenSignInAttachment}
* create by lvzebiao @2019/3/20
*/
@Data
public class ImNotice implements Serializable {
private String title;
private String content;
public String getTitle() {
return title;
}
public void setTitle(String title) {
this.title = title;
}
public String getContent() {
return content;
}
public void setContent(String content) {
this.content = content;
}
}