办学质量监测教学评价系统
ageerle
2025-02-07 c1cbfc2b93678bf47baf02b116a7aaa81f3473cf
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
package org.ruoyi.system.domain.vo;
 
import com.alibaba.excel.annotation.ExcelIgnoreUnannotated;
import com.alibaba.excel.annotation.ExcelProperty;
import io.github.linpeilie.annotations.AutoMapper;
import lombok.Data;
import org.ruoyi.system.domain.WxRobKeyword;
 
import java.io.Serial;
import java.io.Serializable;
 
 
 
/**
 * 【请填写功能名称】视图对象 wx_rob_keyword
 *
 * @author Lion Li
 * @date 2024-05-01
 */
@Data
@ExcelIgnoreUnannotated
@AutoMapper(target = WxRobKeyword.class)
public class WxRobKeywordVo implements Serializable {
 
    @Serial
    private static final long serialVersionUID = 1L;
 
    /**
     *
     */
    @ExcelProperty(value = "")
    private Long id;
 
    /**
     * 机器唯一码
     */
    @ExcelProperty(value = "机器唯一码")
    private String uniqueKey;
 
    /**
     * 关键词
     */
    @ExcelProperty(value = "关键词")
    private String keyData;
 
    /**
     * 回复内容
     */
    @ExcelProperty(value = "回复内容")
    private String valueData;
 
    /**
     * 回复类型
     */
    @ExcelProperty(value = "回复类型")
    private String typeData;
 
    /**
     * 目标昵称
     */
    @ExcelProperty(value = "目标昵称")
    private String nickName;
 
    /**
     * 群1好友0
     */
    @ExcelProperty(value = "群1好友0")
    private Integer toGroup;
 
    /**
     * 启用1禁用0
     */
    @ExcelProperty(value = "启用1禁用0")
    private Integer enable;
 
 
}