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
87
88
89
90
91
92
package com.cloudroam.model;
 
import com.cloudroam.model.BaseModel;
import com.baomidou.mybatisplus.annotation.TableName;
 
import java.time.LocalDate;
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-11
 */
@Data
@EqualsAndHashCode(callSuper = true)
@Accessors(chain = true)
@TableName("business_daily")
public class BusinessDailyDO extends BaseModelStringId {
 
 
    /**
     * 会议ID
     */
    private String meetingId;
 
    /**
     * 项目ID
     */
    private String projectId;
 
    /**
     * 商务日期
     */
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    private LocalDateTime businessDate;
 
    /**
     * 商务内容
     */
    private String businessContent;
 
    /**
     * 商务开始时间
     */
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    private LocalDateTime businessStartTime;
 
    /**
     * 商务结束时间
     */
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    private LocalDateTime businessEndTime;
 
    /**
     * 备注
     */
    private String remark;
 
    /**
     * 创建人
     */
    private String createUserId;
 
    /**
     * 创建人姓名
     */
    private String createUserName;
 
    /**
     * 更新人
     */
    private String updateUserId;
 
    /**
     * 更新人姓名
     */
    private String updateUserName;
 
 
    /**
     * 删除人姓名
     */
    private String deleteUserName;
 
    private String deleteUserId;
 
 
}