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; } }