会议相关

This commit is contained in:
18792927508
2023-11-10 15:09:25 +08:00
parent e671ed8e2a
commit 9bb23badc0
7 changed files with 105 additions and 43 deletions
@@ -1,7 +1,10 @@
package com.ruoyi.wisdomarbitrate.domain;
import com.fasterxml.jackson.annotation.JsonFormat;
import lombok.Data;
import java.util.Date;
/**
* @author wangqiong
* @description 预定会议
@@ -13,7 +16,7 @@ public class ReservedConference {
/**
* id
*/
private String id;
private Long id;
/**
* 案件id
*/
@@ -25,13 +28,18 @@ public class ReservedConference {
/**
* 预定会议开始时间
*/
private String scheduleStartTime;
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
private Date scheduleStartTime;
/**
* 预定会议结束时间
*/
private String scheduleEndTime;
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
private Date scheduleEndTime;
public ReservedConference( Long caseId, String roomId, String scheduleStartTime, String scheduleEndTime) {
public ReservedConference() {
}
public ReservedConference(Long caseId, String roomId, Date scheduleStartTime, Date scheduleEndTime) {
this.caseId = caseId;
this.roomId = roomId;
this.scheduleStartTime = scheduleStartTime;