1:修改BUG
This commit is contained in:
@@ -0,0 +1,17 @@
|
||||
package com.xscm.moduleutil.event;
|
||||
|
||||
import lombok.AllArgsConstructor;
|
||||
import lombok.Data;
|
||||
import lombok.NoArgsConstructor;
|
||||
|
||||
/**
|
||||
*@author qx
|
||||
*@data 2025/9/22
|
||||
*@description: 关闭飘屏
|
||||
*/
|
||||
@Data
|
||||
@NoArgsConstructor
|
||||
@AllArgsConstructor
|
||||
public class FloatingScreenEvent {
|
||||
private boolean floatingScreen;
|
||||
}
|
||||
@@ -9,8 +9,10 @@ import lombok.Data;
|
||||
@Data
|
||||
public class UnreadCountEvent {
|
||||
private long aLong;
|
||||
private long bLong;
|
||||
|
||||
public UnreadCountEvent(long aLong) {
|
||||
public UnreadCountEvent(long aLong, long bLong) {
|
||||
this.aLong = aLong;
|
||||
this.bLong = bLong;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user