Files
yusheng-android/moduleUtil/src/main/java/com/xscm/moduleutil/event/UnreadCountEvent.java

27 lines
498 B
Java
Raw Normal View History

2025-10-20 10:16:44 +08:00
package com.xscm.moduleutil.event;
import lombok.Data;
/**
*@author qx
*@data 2025/7/15
*@description: 这是im展示需要显示的未读消息数
*/
@Data
public class UnreadCountEvent {
private long aLong;
2025-10-24 17:52:11 +08:00
private long bLong;
2025-10-20 10:16:44 +08:00
2025-10-24 17:52:11 +08:00
// public UnreadCountEvent(long aLong, long bLong) {
// this.aLong = aLong;
// this.bLong = bLong;
// }
//
// public UnreadCountEvent() {
// }
// public UnreadCountEvent(long aLong) {
// this.aLong = aLong;
// }
2025-10-20 10:16:44 +08:00
}