办学质量监测教学评价系统
ageerle
2025-04-07 c1162148b1d30be0d132bbb2389ed4806081ad0e
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
package org.ruoyi.system.domain;
 
import com.baomidou.mybatisplus.annotation.*;
import org.ruoyi.common.mybatis.core.domain.BaseEntity;
import lombok.Data;
import lombok.EqualsAndHashCode;
 
import java.io.Serial;
 
/**
 * 微信机器人对象 wx_rob_config
 *
 * @author Lion Li
 * @date 2024-05-01
 */
@Data
@EqualsAndHashCode(callSuper = true)
@TableName("chat_rob_config")
public class WxRobConfig extends BaseEntity {
 
    @Serial
    private static final long serialVersionUID = 1L;
 
    /**
     * 主键
     */
    @TableId(value = "id")
    private Long id;
 
    /**
     * 用户id
     */
    private Long userId;
 
    /**
     * 机器人名称
     */
    private String botName;
 
    /**
     * 机器唯一码
     */
    private String uniqueKey;
 
    /**
     * 备注(微信号)
     */
    private String remark;
 
    /**
     * 默认好友回复开关
     */
    private String defaultFriend;
 
    /**
     * 默认群回复开关
     */
    private String defaultGroup;
 
 
    /**
     * 机器启用1禁用0
     */
    private String enable;
 
}