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