销毁房间等接口

This commit is contained in:
18792927508
2023-11-09 17:24:07 +08:00
parent 1f41b4903b
commit 1242497d6f
9 changed files with 226 additions and 32 deletions
@@ -0,0 +1,40 @@
package com.ruoyi.wisdomarbitrate.domain;
import lombok.Data;
/**
* @author wangqiong
* @description 预定会议
* @Version 1.0
* @date 2023-11-09 16:51
*/
@Data
public class ReservedConference {
/**
* id
*/
private String id;
/**
* 案件id
*/
private Long caseId;
/**
* 房间号
*/
private String roomId;
/**
* 预定会议开始时间
*/
private String scheduleStartTime;
/**
* 预定会议结束时间
*/
private String scheduleEndTime;
public ReservedConference( Long caseId, String roomId, String scheduleStartTime, String scheduleEndTime) {
this.caseId = caseId;
this.roomId = roomId;
this.scheduleStartTime = scheduleStartTime;
this.scheduleEndTime = scheduleEndTime;
}
}