1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
| package com.ruoyi.collaborativeApproval.dto;
|
| import lombok.Data;
|
| /**
| * @author buhuazhen
| * @date 2025/9/16
| * @email 3038525872@qq.com
| */
| @Data
| public class MeetingItem {
| private Long id;
| private String title;
| private String startTime;
| private String endTime;
| private String time;
| private String host;
| private Integer participants = 0;
| private Integer status;
| private String description;
| private String room;
|
|
| }
|
|