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