From a3644d716dedc5a6d164d5eeef4ffcf6f988e509 Mon Sep 17 00:00:00 2001
From: weimingfei <fei_gaming@sina.com>
Date: 星期三, 14 一月 2026 11:32:42 +0800
Subject: [PATCH] 指纹钥匙柜bug修改
---
keyCabinet-android/lib_coremodel/src/main/java/com/doumee/lib_coremodel/bean/event/ActionEventData.java | 7 +++++++
1 files changed, 7 insertions(+), 0 deletions(-)
diff --git a/keyCabinet-android/lib_coremodel/src/main/java/com/doumee/lib_coremodel/bean/event/ActionEventData.java b/keyCabinet-android/lib_coremodel/src/main/java/com/doumee/lib_coremodel/bean/event/ActionEventData.java
index 8085cdc..8f727c1 100644
--- a/keyCabinet-android/lib_coremodel/src/main/java/com/doumee/lib_coremodel/bean/event/ActionEventData.java
+++ b/keyCabinet-android/lib_coremodel/src/main/java/com/doumee/lib_coremodel/bean/event/ActionEventData.java
@@ -28,6 +28,13 @@
this.data.put("type",type);
}
+ public ActionEventData(int type,String obj){
+ this.action = ActionEvent.Action.DO;
+ this.data = new HashMap<>();
+ this.data.put("type",type);
+ this.data.put("obj",obj);
+ }
+
public ActionEventData(int action,Object value) {
this.action = action;
this.data = new HashMap<>();
--
Gitblit v1.9.3