1821349743@qq.com
2023-02-20 146b951e36b7529f4aa9671035a657f651762edc
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
package com.product.administration.service.ide;
 
import com.product.core.entity.FieldSetEntity;
import com.product.core.exception.BaseException;
 
/**
 * 会议室管理
 */
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;
 
}