Helius
2022-05-27 4351e71d782741143a98f86f6648acd16689165f
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
package com.matrix.system.shopXcx.bean;
 
import com.matrix.core.pojo.EntityDTO;
import com.matrix.core.anotations.Extend;
 
import java.util.List;
 
/**
 * @description 商品参数表
 * @author pengliang
 * @date 2019-06-05 17:25
 */
public class ShopProductParam  extends EntityDTO{
    @Extend
    private static final long serialVersionUID = 1L; 
 
    
    /**
     * 主键
     */
    private Integer  paramId;
            
    
    /**
     * 参数名称
     */
    private String  paramName;
            
    
    /**
     * 参数类型
     */
    private Integer  paramType;
            
    
    /**
     * 是否启用0启用,1不启用
     */
    private Integer  isStart;
            
    
    /**
     * 排序
     */
    private Integer  sort;
 
    /**
     * 参数值
     */
    private List<ShopParamValue> valueList;
    private Long companyId;
    public Long getCompanyId() {
        return companyId;
    }
 
    public void setCompanyId(Long companyId) {
        this.companyId = companyId;
    }
    public Integer getParamId() {
        return paramId;
    }
       
       public void setParamId(Integer paramId) {
        this.paramId=paramId;
    }
       
 
    public String getParamName() {
        return paramName;
    }
       
       public void setParamName(String paramName) {
        this.paramName=paramName;
    }
       
 
    public Integer getParamType() {
        return paramType;
    }
       
       public void setParamType(Integer paramType) {
        this.paramType=paramType;
    }
       
 
    public Integer getIsStart() {
        return isStart;
    }
       
       public void setIsStart(Integer isStart) {
        this.isStart=isStart;
    }
       
 
    public Integer getSort() {
        return sort;
    }
       
       public void setSort(Integer sort) {
        this.sort=sort;
    }
 
    public List<ShopParamValue> getValueList() {
        return valueList;
    }
 
    public void setValueList(List<ShopParamValue> valueList) {
        this.valueList = valueList;
    }
}