jyy
2021-07-09 8287f743a1ac2fd5330f6dd7ca08255df193ae03
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
package com.matrix.system.shopXcx.bean;
 
import com.matrix.core.pojo.EntityDTO;
import com.matrix.core.anotations.Extend;
 
/**
 * @description 商品参数值表
 * @author pengliang
 * @date 2019-06-05 17:27
 */
public class ShopParamValue  extends EntityDTO{
    @Extend
    private static final long serialVersionUID = 1L; 
 
    
    /**
     * 主键
     */
    private Integer  valueId;
            
    
    /**
     * 参数id
     */
    private Integer  paramId;
            
    
    /**
     * 参数值
     */
    private String  paramValue;
            
    
    /**
     * 排序
     */
    private Integer  sort;
 
 
    private Long companyId;
    public Long getCompanyId() {
        return companyId;
    }
 
    public void setCompanyId(Long companyId) {
        this.companyId = companyId;
    }
    public Integer getValueId() {
        return valueId;
    }
       
       public void setValueId(Integer valueId) {
        this.valueId=valueId;
    }
       
 
    public Integer getParamId() {
        return paramId;
    }
       
       public void setParamId(Integer paramId) {
        this.paramId=paramId;
    }
       
 
    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;
    }
       
 
 
  
}