From 301a0ae856cea8f19936991ff977b4717e83dc8e Mon Sep 17 00:00:00 2001
From: 许鹏程 <1821349743@qq.com>
Date: 星期六, 14 九月 2024 18:59:31 +0800
Subject: [PATCH] Merge remote-tracking branch 'origin/master' into dev
---
src/main/java/com/product/administration/service/ide/IConferenceManagerService.java | 24 ++++++++++++++++++++++++
1 files changed, 24 insertions(+), 0 deletions(-)
diff --git a/src/main/java/com/product/administration/service/ide/IConferenceManagerService.java b/src/main/java/com/product/administration/service/ide/IConferenceManagerService.java
index 3c9fdf0..13db868 100644
--- a/src/main/java/com/product/administration/service/ide/IConferenceManagerService.java
+++ b/src/main/java/com/product/administration/service/ide/IConferenceManagerService.java
@@ -1,9 +1,14 @@
package com.product.administration.service.ide;
+import com.google.zxing.WriterException;
+import com.google.zxing.common.BitMatrix;
import com.product.core.entity.DataTableEntity;
import com.product.core.entity.FieldSetEntity;
import com.product.core.exception.BaseException;
+import java.io.IOException;
+import java.text.ParseException;
+import java.util.HashMap;
import java.util.List;
/**
@@ -34,4 +39,23 @@
List getKbData(FieldSetEntity fse)throws BaseException;
+ List getMeetingDetails(FieldSetEntity fse)throws BaseException;
+
+ HashMap saveOrUpdateMeetingInfo(FieldSetEntity fse)throws BaseException;
+
+ BitMatrix getQrCode(String content) throws BaseException, WriterException, IOException;
+
+ void CancelAndStart(FieldSetEntity fse)throws BaseException;
+
+ String ConferenceSign(FieldSetEntity fse) throws BaseException, ParseException;
+
+ HashMap getSignOrVisitInfo(FieldSetEntity fse) throws BaseException;
+
+ void sendMsg(FieldSetEntity fse) throws BaseException;
+
+
+
+
+
+
}
--
Gitblit v1.9.2