销毁房间等接口
This commit is contained in:
+37
@@ -0,0 +1,37 @@
|
||||
package com.ruoyi.wisdomarbitrate.mapper;
|
||||
|
||||
import com.ruoyi.wisdomarbitrate.domain.ReservedConference;
|
||||
import org.springframework.data.repository.query.Param;
|
||||
import org.springframework.stereotype.Repository;
|
||||
|
||||
|
||||
import java.util.List;
|
||||
|
||||
|
||||
/**
|
||||
* @author wangqiong
|
||||
* @description 预约会议Mapper接口
|
||||
* @Version 1.0
|
||||
* @date 2023-11-09 16:51
|
||||
*/
|
||||
@Repository
|
||||
public interface ReservedConferenceMapper {
|
||||
/**
|
||||
* 根据案件id查询预约会议列表
|
||||
* @param caseId
|
||||
* @return
|
||||
*/
|
||||
List<ReservedConference> selectListByCaseId(@Param("caseId")Long caseId);
|
||||
|
||||
/**
|
||||
* 新增
|
||||
* @param reservedConference
|
||||
*/
|
||||
void insert(ReservedConference reservedConference);
|
||||
|
||||
/**
|
||||
* 根据房间号删除
|
||||
* @param roomId
|
||||
*/
|
||||
void deleteByRoomId(@Param("roomId")String roomId);
|
||||
}
|
||||
Reference in New Issue
Block a user