"vscode:/vscode.git/clone" did not exist on "8906294c97b210ecffef2712b7f1dff6123e8129"
Commit 0b02f4a2 authored by macro's avatar macro
Browse files

Update EsProductAttributeValue.java

parent 9d9b2282
package com.macro.mall.search.domain;
import lombok.Data;
import lombok.EqualsAndHashCode;
import org.springframework.data.elasticsearch.annotations.Field;
import org.springframework.data.elasticsearch.annotations.FieldType;
......@@ -9,6 +11,8 @@ import java.io.Serializable;
* 搜索中的商品属性信息
* Created by macro on 2018/6/27.
*/
@Data
@EqualsAndHashCode(callSuper = false)
public class EsProductAttributeValue implements Serializable {
private static final long serialVersionUID = 1L;
private Long id;
......@@ -21,43 +25,4 @@ public class EsProductAttributeValue implements Serializable {
//属性名称
@Field(type=FieldType.Keyword)
private String name;
public Long getId() {
return id;
}
public void setId(Long id) {
this.id = id;
}
public Long getProductAttributeId() {
return productAttributeId;
}
public void setProductAttributeId(Long productAttributeId) {
this.productAttributeId = productAttributeId;
}
public String getValue() {
return value;
}
public void setValue(String value) {
this.value = value;
}
public Integer getType() {
return type;
}
public void setType(Integer type) {
this.type = type;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
}
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment