销毁房间等接口
This commit is contained in:
@@ -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;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user