1
zj
2025-09-24 5b16e50ef283a1ccdd6408ee2ccf41726f349923
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
package com.ruoyi.system.domain;
 
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableId;
import com.fasterxml.jackson.annotation.JsonFormat;
import lombok.Data;
 
import java.util.Date;
 
/**
 * @program: ruoyiim
 * @description:
 * @create: 2025-08-21 19:06
 **/
@Data
public class GroupWelcomeConfig {
 
    /**
     * 主键ID
     */
    @TableId(type = IdType.AUTO)
    private Long id;
 
    /**
     * 网站名称
     */
    private String websiteName;
 
    /**
     * 配置名称
     */
    private String configurationName = "IM-BASICS";
 
    /**
     * 群组ID
     */
    private String groupId;
 
    /**
     * 用户Accid
     */
    private String userAccid;
 
    /**
     * 欢迎消息
     */
    private String welcomeMessage;
 
    /**
     * 法律机构
     */
    private String legalInstitution;
 
    /**
     * 版权信息
     */
    private String copyrightInfo;
 
    /**
     * 二维码链接
     */
    private String codeUrl;
 
    /**
     * 创建时间
     */
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    private Date createTime;
 
    /**
     * 更新时间
     */
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    private Date updateTime;
 
}