2023-11-09 17:24:07 +08:00
|
|
|
package com.ruoyi.wisdomarbitrate.mapper;
|
|
|
|
|
|
|
|
|
|
import com.ruoyi.wisdomarbitrate.domain.ReservedConference;
|
2023-11-10 15:09:25 +08:00
|
|
|
import org.apache.ibatis.annotations.Param;
|
2023-11-09 17:24:07 +08:00
|
|
|
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);
|
2023-11-10 15:09:25 +08:00
|
|
|
|
|
|
|
|
|
|
|
|
|
void batchDeleteByIds(@Param("ids") List<Long> ids);
|
2023-11-09 17:24:07 +08:00
|
|
|
}
|