智能仲裁后端服务

ReservedConference.java 1.1KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. package com.ruoyi.wisdomarbitrate.domain;
  2. import com.fasterxml.jackson.annotation.JsonFormat;
  3. import lombok.Data;
  4. import java.util.Date;
  5. /**
  6. * @author wangqiong
  7. * @description 预定会议
  8. * @Version 1.0
  9. * @date 2023-11-09 16:51
  10. */
  11. @Data
  12. public class ReservedConference {
  13. /**
  14. * id
  15. */
  16. private Long id;
  17. /**
  18. * 用户id
  19. */
  20. private Long userId;
  21. /**
  22. * 案件id
  23. */
  24. private Long caseId;
  25. /**
  26. * 房间号
  27. */
  28. private long roomId;
  29. /**
  30. * 预定会议开始时间
  31. */
  32. @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
  33. private Date scheduleStartTime;
  34. /**
  35. * 预定会议结束时间
  36. */
  37. @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
  38. private Date scheduleEndTime;
  39. public ReservedConference() {
  40. }
  41. public ReservedConference(Long caseId, Long userId, long roomId, Date scheduleStartTime, Date scheduleEndTime) {
  42. this.caseId = caseId;
  43. this.userId = userId;
  44. this.roomId = roomId;
  45. this.scheduleStartTime = scheduleStartTime;
  46. this.scheduleEndTime = scheduleEndTime;
  47. }
  48. }