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 customerServiceUrl;
|
|
|
/**
|
* 关于我们
|
*/
|
private String aboutUs;
|
|
/**
|
* 法律机构
|
*/
|
private String legalInstitution;
|
|
/**
|
* 版权信息
|
*/
|
private String copyrightInfo;
|
|
/**
|
* 二维码链接
|
*/
|
private String codeUrl;
|
|
/**
|
* 支付开关
|
*/
|
private Boolean paymentSwitch = true;
|
|
/**
|
* 创建时间
|
*/
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
private Date createTime;
|
|
/**
|
* 更新时间
|
*/
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
private Date updateTime;
|
|
}
|