Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
wwwanlingxiao
mall
Commits
0b02f4a2
"vscode:/vscode.git/clone" did not exist on "8906294c97b210ecffef2712b7f1dff6123e8129"
Commit
0b02f4a2
authored
Jul 03, 2020
by
macro
Browse files
Update EsProductAttributeValue.java
parent
9d9b2282
Changes
1
Hide whitespace changes
Inline
Side-by-side
mall-search/src/main/java/com/macro/mall/search/domain/EsProductAttributeValue.java
View file @
0b02f4a2
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
;
}
}
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment