From 0b9605b411d7aa07c704153d8c3ff4baa0dc1a66 Mon Sep 17 00:00:00 2001 From: 18756 <1875631620@qq.com> Date: 星期四, 22 八月 2024 10:06:12 +0800 Subject: [PATCH] 会议室功能签到信息8.22 --- src/main/java/com/product/administration/service/ide/IConferenceManagerService.java | 21 ++++++++++++++++++++- 1 files changed, 20 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 a842460..ed3a691 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,7 +39,21 @@ List getKbData(FieldSetEntity fse)throws BaseException; - DataTableEntity getMeetingDetails(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 getSignInfo(FieldSetEntity fse) throws BaseException; + + + + } -- Gitblit v1.9.2