package com.product.administration.service.ide; import com.product.core.entity.DataTableEntity; import com.product.core.entity.FieldSetEntity; import com.product.core.exception.BaseException; 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; DataTableEntity getMeetingDetails(FieldSetEntity fse)throws BaseException; }