| package com.matrix.system.shopXcx.bean; | 
|   | 
| import com.matrix.core.pojo.EntityDTO; | 
| import com.matrix.core.anotations.Extend; | 
|   | 
| import java.util.List; | 
|   | 
| /** | 
|  * @description 商品参数表 | 
|  * @author pengliang | 
|  * @date 2019-06-05 17:25 | 
|  */ | 
| public class ShopProductParam  extends EntityDTO{ | 
|     @Extend | 
|     private static final long serialVersionUID = 1L;  | 
|   | 
|      | 
|     /** | 
|      * 主键 | 
|      */ | 
|     private Integer  paramId; | 
|              | 
|      | 
|     /** | 
|      * 参数名称 | 
|      */ | 
|     private String  paramName; | 
|              | 
|      | 
|     /** | 
|      * 参数类型 | 
|      */ | 
|     private Integer  paramType; | 
|              | 
|      | 
|     /** | 
|      * 是否启用0启用,1不启用 | 
|      */ | 
|     private Integer  isStart; | 
|              | 
|      | 
|     /** | 
|      * 排序 | 
|      */ | 
|     private Integer  sort; | 
|   | 
|     /** | 
|      * 参数值 | 
|      */ | 
|     private List<ShopParamValue> valueList; | 
|     private Long companyId; | 
|     public Long getCompanyId() { | 
|         return companyId; | 
|     } | 
|   | 
|     public void setCompanyId(Long companyId) { | 
|         this.companyId = companyId; | 
|     } | 
|     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 Integer getParamType() { | 
|         return paramType; | 
|     } | 
|         | 
|        public void setParamType(Integer paramType) { | 
|         this.paramType=paramType; | 
|     } | 
|         | 
|   | 
|     public Integer getIsStart() { | 
|         return isStart; | 
|     } | 
|         | 
|        public void setIsStart(Integer isStart) { | 
|         this.isStart=isStart; | 
|     } | 
|         | 
|   | 
|     public Integer getSort() { | 
|         return sort; | 
|     } | 
|         | 
|        public void setSort(Integer sort) { | 
|         this.sort=sort; | 
|     } | 
|   | 
|     public List<ShopParamValue> getValueList() { | 
|         return valueList; | 
|     } | 
|   | 
|     public void setValueList(List<ShopParamValue> valueList) { | 
|         this.valueList = valueList; | 
|     } | 
| } |