zm
2024-11-04 9d22bf2b596d8f5627f671f009b3f42d71d73bf4
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
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;
 
/**
 * 会议室管理
 */
public interface IConferenceManagerService {
    /**
     * 保存会议室
     *
     * @param fse
     * @return
     * @throws BaseException
     */
    boolean saveConferenceRoom(FieldSetEntity fse) throws BaseException;
 
    /**
     * 删除会议室
     *
     * @param fse
     * @return
     * @throws BaseException
     */
    boolean delConferenceRoom(FieldSetEntity fse) throws BaseException;
 
    String saveConferenceApply(FieldSetEntity fse)throws BaseException;
 
    boolean delConferenceApply(FieldSetEntity fse)throws BaseException;
 
    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;
 
 
 
 
 
 
}