tj
2025-06-05 2d549a04870d1315868a7cf19952b64e8071e711
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
package com.cloudroam.model;
 
import com.cloudroam.model.BaseModel;
import com.baomidou.mybatisplus.annotation.TableName;
import java.time.LocalDateTime;
 
import com.fasterxml.jackson.annotation.JsonFormat;
import lombok.Data;
import lombok.EqualsAndHashCode;
import lombok.experimental.Accessors;
 
/**
 * @author generator@TaoJie
 * @since 2024-07-05
 */
@Data
@EqualsAndHashCode(callSuper = true)
@Accessors(chain = true)
@TableName("meeting")
public class MeetingDO extends BaseModelStringId {
 
 
    /**
     * 会议标题
     */
    private String meetingTitle;
 
    /**
     * 会议时间
     */
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    private LocalDateTime meetingDate;
 
    /**
     * 会议类型
     */
    private String meetingType;
 
    /**
     * 会议内容
     */
    private String meetingContent;
 
    /**
     * 会议开始时间
     */
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    private LocalDateTime meetingStartTime;
 
    /**
     * 会议结束时间
     */
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    private LocalDateTime meetingEndTime;
 
    /**
     * 创建人
     */
    private String createUserId;
 
    /**
     * 创建人姓名
     */
    private String createUserName;
 
    /**
     * 更新人
     */
    private String updateUserId;
 
    /**
     * 更新人姓名
     */
    private String updateUserName;
 
 
    private Integer isCommit;
 
    private String commitUserId;
 
    private String commitUserName;
 
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    private LocalDateTime commitTime;
 
}