办学质量监测教学评价系统
ageer
2025-03-02 1385b165c9a62a486b4494ebb11320d3c1117a5e
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
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.WxRobRelation;
 
import java.io.Serial;
import java.io.Serializable;
 
 
 
/**
 * 【请填写功能名称】视图对象 wx_rob_relation
 *
 * @author Lion Li
 * @date 2024-05-01
 */
@Data
@ExcelIgnoreUnannotated
@AutoMapper(target = WxRobRelation.class)
public class WxRobRelationVo implements Serializable {
 
    @Serial
    private static final long serialVersionUID = 1L;
 
    /**
     *
     */
    @ExcelProperty(value = "")
    private Long id;
 
    /**
     * 外接唯一码
     */
    @ExcelProperty(value = "外接唯一码")
    private String outKey;
 
    /**
     * 机器唯一码
     */
    @ExcelProperty(value = "机器唯一码")
    private String uniqueKey;
 
    /**
     * 目标昵称
     */
    @ExcelProperty(value = "目标昵称")
    private String nickName;
 
    /**
     * 群1好友0
     */
    @ExcelProperty(value = "群1好友0")
    private Integer toGroup;
 
    /**
     * 启用1禁用0
     */
    @ExcelProperty(value = "启用1禁用0")
    private Integer enable;
 
    /**
     * IP白名单
     */
    @ExcelProperty(value = "IP白名单")
    private String whiteList;
 
 
}