TodayMeetingMobilePageVo.java 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. package com.xjrsoft.module.oa.vo;
  2. import io.swagger.annotations.ApiModelProperty;
  3. import lombok.Data;
  4. import java.time.LocalDate;
  5. import java.time.LocalTime;
  6. /**
  7. * @title: 移动端今日会议列表(分页)出参
  8. * @Author phoenix
  9. * @Date: 2025-03-26
  10. * @Version 1.0
  11. */
  12. @Data
  13. public class TodayMeetingMobilePageVo {
  14. /**
  15. *
  16. */
  17. @ApiModelProperty("")
  18. private String id;
  19. /**
  20. * 会议开始时间
  21. */
  22. @ApiModelProperty("会议开始时间")
  23. private LocalTime meetingApplyS;
  24. /**
  25. * 会议结束时间
  26. */
  27. @ApiModelProperty("会议结束时间")
  28. private LocalTime meetingApplyE;
  29. /**
  30. * 会议形式(xjr_dictionary_item(meeting_type))
  31. */
  32. @ApiModelProperty("会议形式(xjr_dictionary_item(meeting_type))")
  33. private String meetingApplyFormat;
  34. /**
  35. * 会议形式(xjr_dictionary_item(meeting_type))
  36. */
  37. @ApiModelProperty("会议形式(xjr_dictionary_item(meeting_type))")
  38. private String meetingApplyFormatCn;
  39. /**
  40. * 会议室管理主键id(meeting_room)
  41. */
  42. @ApiModelProperty("会议室管理主键id(meeting_room)")
  43. private Long meetingRoomId;
  44. /**
  45. * 会议室管理主键id(meeting_room)
  46. */
  47. @ApiModelProperty("会议室管理主键id(meeting_room)")
  48. private String meetingRoomIdCn;
  49. /**
  50. * 线上会议链接
  51. */
  52. @ApiModelProperty("线上会议链接")
  53. private String meetingApplyUrl;
  54. /**
  55. * 会议主题
  56. */
  57. @ApiModelProperty("会议主题")
  58. private String meetingApplyTheme;
  59. /**
  60. * 会议状态(0:未开始 1:已经撤销,2:已结束)
  61. */
  62. @ApiModelProperty("会议状态(0:未开始 1:已经撤销,2:已结束,3:进行中,4:未参与)")
  63. private Integer meetingStatus;
  64. /**
  65. * 签到状态(0:未签到,1:已签到)
  66. */
  67. @ApiModelProperty("签到状态(0:未签到,1:已签到)")
  68. private Integer checkInStatus;
  69. /**
  70. * 冲突状态(0:冲突,1:不冲突)
  71. */
  72. @ApiModelProperty("冲突状态(0:冲突,1:不冲突)")
  73. private Integer conflictStatus;
  74. }