Helius
2021-03-17 9974b1fffff1cad712b7c30fb4c708ef45ec4b8c
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
package com.matrix.system.shopXcx.bean;
 
import com.matrix.core.pojo.EntityDTO;
import com.matrix.core.anotations.Extend;
 
/**
 * @description 产品参数关联表
 * @author jyy
 * @date 2019-06-10 10:58
 */
public class ShopProductParamRef  extends EntityDTO{
    @Extend
    private static final long serialVersionUID = 1L; 
 
    
    /**
     * 主键
     */
    private Integer  id;
            
    
    /**
     * 产品ID
     */
    private Integer  pId;
            
    
    /**
     * 参数ID
     */
    private Integer  paramId;
            
    
    /**
     * 参数名称
     */
    private String  paramName;
            
    
    /**
     * 参数值
     */
    private String  paramValue;
 
    /**
     * 参数类型
     */
    private Integer paramType;
            
    
    /**
     * 排序
     */
    private Integer  sort;
            
    
 
    public Integer getId() {
        return id;
    }
       
       public void setId(Integer id) {
        this.id=id;
    }
       
 
    public Integer getPId() {
        return pId;
    }
       
       public void setPId(Integer pId) {
        this.pId=pId;
    }
       
 
    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 String getParamValue() {
        return paramValue;
    }
       
       public void setParamValue(String paramValue) {
        this.paramValue=paramValue;
    }
       
 
    public Integer getSort() {
        return sort;
    }
       
       public void setSort(Integer sort) {
        this.sort=sort;
    }
 
    public Integer getParamType() {
        return paramType;
    }
 
    public void setParamType(Integer paramType) {
        this.paramType = paramType;
    }
}