Browse Source

增加列表按钮

zqy 4 months ago
parent
commit
2dd341fa9c

+ 21 - 0
websrc/com/kingdee/eas/custom/beisen/synchronouspos/handler/ExecutorCountUtil.java

@@ -0,0 +1,21 @@
+package com.kingdee.eas.custom.beisen.synchronouspos.handler;
+
+public class ExecutorCountUtil {
+    private int count = 0;
+    private static ExecutorCountUtil examples = new ExecutorCountUtil();
+
+    public int getCount() {
+        return count;
+    }
+    public void CountClear() {
+        this.count=0;
+    }
+    public void countPlusPlus() {
+        this.count++;
+    }
+    public static ExecutorCountUtil getExamples() {
+        return examples;
+    }
+    private ExecutorCountUtil() {
+    }
+}