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
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 ShopProductAttrRef  extends EntityDTO{
    @Extend
    private static final long serialVersionUID = 1L; 
 
    
    /**
     * 主键
     */
    private Integer  id;
            
    
    /**
     * 产品ID
     */
    private Integer  pId;
            
    
    /**
     * 属性ID
     */
    private Integer  attrId;
            
    
    /**
     * 属性全路径
     */
    private String  attrFullPath;
            
    
 
    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 getAttrId() {
        return attrId;
    }
       
       public void setAttrId(Integer attrId) {
        this.attrId=attrId;
    }
       
 
    public String getAttrFullPath() {
        return attrFullPath;
    }
       
       public void setAttrFullPath(String attrFullPath) {
        this.attrFullPath=attrFullPath;
    }
       
 
 
  
}