From 9d22bf2b596d8f5627f671f009b3f42d71d73bf4 Mon Sep 17 00:00:00 2001 From: zm <2369059705qq.com> Date: 星期一, 04 十一月 2024 16:02:07 +0800 Subject: [PATCH] 考情看板和报表 --- src/main/java/com/product/administration/service/ide/IConferenceManagerService.java | 14 +++++++++++++- 1 files changed, 13 insertions(+), 1 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 024800a..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,11 +1,13 @@ 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; @@ -41,7 +43,17 @@ HashMap saveOrUpdateMeetingInfo(FieldSetEntity fse)throws BaseException; - String getQrCode(FieldSetEntity fse) throws BaseException, WriterException, IOException; + 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