Helius
2020-12-14 cc78ea9e77300dfcb9eb7a9dc397c81548d695fb
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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
package com.matrix.system.hive.bean;
 
import com.matrix.core.anotations.Extend;
 
import java.io.Serializable;
 
/**
 * @date 2016-10-17 10:43
 */
public class ParameterSettings implements Serializable {
 
    private static final long serialVersionUID = 1L;
 
 
    private Long id;
 
 
    /**
     * 配置code
     */
    private String code;
 
 
    /**
     * 可选参数
     */
    private String value;
 
 
    /**
     * 配置名称
     */
    private String name;
 
 
    /**
     * 1 文本框  2 下拉框    3 多选  4 分组标题
     */
    private Integer type;
 
 
    /**
     * 分类
     */
    private String category;
 
    /**
     * 用户选中的值
     */
    @Extend
    private String userValue;
 
    @Extend
    private Long companyId;
 
    @Extend
    private Long shopId;
 
    public Long getCompanyId() {
        return companyId;
    }
 
    public void setCompanyId(Long companyId) {
        this.companyId = companyId;
    }
 
    public Long getShopId() {
        return shopId;
    }
 
    public void setShopId(Long shopId) {
        this.shopId = shopId;
    }
 
    public String getUserValue() {
        return userValue;
    }
 
    public void setUserValue(String userValue) {
        this.userValue = userValue;
    }
 
    public Long getId() {
        return id;
    }
 
    public void setId(Long id) {
        this.id = id;
    }
 
    public String getCode() {
        return code;
    }
 
    public void setCode(String code) {
        this.code = code;
    }
 
    public String getValue() {
        return value;
    }
 
    public void setValue(String value) {
        this.value = value;
    }
 
    public String getName() {
        return name;
    }
 
    public void setName(String name) {
        this.name = name;
    }
 
    public Integer getType() {
        return type;
    }
 
    public void setType(Integer type) {
        this.type = type;
    }
 
    public String getCategory() {
        return category;
    }
 
    public void setCategory(String category) {
        this.category = category;
    }
}