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
0a9e5e69
Commit
0a9e5e69
authored
Mar 14, 2022
by
macro
Browse files
Update MemberProductCollection.java
parent
85c2d7ec
Changes
1
Hide whitespace changes
Inline
Side-by-side
mall-portal/src/main/java/com/macro/mall/portal/domain/MemberProductCollection.java
View file @
0a9e5e69
package
com.macro.mall.portal.domain
;
import
lombok.Getter
;
import
lombok.Setter
;
import
org.springframework.data.annotation.Id
;
import
org.springframework.data.mongodb.core.index.Indexed
;
import
org.springframework.data.mongodb.core.mapping.Document
;
...
...
@@ -10,6 +12,8 @@ import java.util.Date;
* 会员商品收藏
* Created by macro on 2018/8/2.
*/
@Getter
@Setter
@Document
public
class
MemberProductCollection
{
@Id
...
...
@@ -25,84 +29,4 @@ public class MemberProductCollection {
private
String
productSubTitle
;
private
String
productPrice
;
private
Date
createTime
;
public
String
getId
()
{
return
id
;
}
public
void
setId
(
String
id
)
{
this
.
id
=
id
;
}
public
Long
getMemberId
()
{
return
memberId
;
}
public
void
setMemberId
(
Long
memberId
)
{
this
.
memberId
=
memberId
;
}
public
String
getMemberNickname
()
{
return
memberNickname
;
}
public
void
setMemberNickname
(
String
memberNickname
)
{
this
.
memberNickname
=
memberNickname
;
}
public
String
getMemberIcon
()
{
return
memberIcon
;
}
public
void
setMemberIcon
(
String
memberIcon
)
{
this
.
memberIcon
=
memberIcon
;
}
public
Long
getProductId
()
{
return
productId
;
}
public
void
setProductId
(
Long
productId
)
{
this
.
productId
=
productId
;
}
public
String
getProductName
()
{
return
productName
;
}
public
void
setProductName
(
String
productName
)
{
this
.
productName
=
productName
;
}
public
String
getProductPic
()
{
return
productPic
;
}
public
void
setProductPic
(
String
productPic
)
{
this
.
productPic
=
productPic
;
}
public
String
getProductSubTitle
()
{
return
productSubTitle
;
}
public
void
setProductSubTitle
(
String
productSubTitle
)
{
this
.
productSubTitle
=
productSubTitle
;
}
public
String
getProductPrice
()
{
return
productPrice
;
}
public
void
setProductPrice
(
String
productPrice
)
{
this
.
productPrice
=
productPrice
;
}
public
Date
getCreateTime
()
{
return
createTime
;
}
public
void
setCreateTime
(
Date
createTime
)
{
this
.
createTime
=
createTime
;
}
}
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