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