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