admin
2025-02-20 f537abe9f3646c739beaf15076246a2f71a347e9
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
package com.yeshi.buwan.domain.tb;
 
import org.springframework.data.annotation.Id;
import org.springframework.data.mongodb.core.mapping.Document;
 
import java.math.BigDecimal;
import java.util.Date;
import java.util.List;
 
@Document(collection = "tbYouZhiHaoHuoGoods")
public class YouZhiHaoHuoGoods {
    @Id
    private String itemId;
    private String itemName;
    private String pic;
    private BigDecimal promotionPrice;
    private BigDecimal price;
    private String sellerNickName;
    private Date createTime;
 
    private Integer promotionPriceInt;
 
 
    private List<String> smallImage;
 
    public Integer getPromotionPriceInt() {
        return promotionPriceInt;
    }
 
    public void setPromotionPriceInt(Integer promotionPriceInt) {
        this.promotionPriceInt = promotionPriceInt;
    }
 
    public List<String> getSmallImage() {
        return smallImage;
    }
 
    public void setSmallImage(List<String> smallImage) {
        this.smallImage = smallImage;
    }
 
    public Date getCreateTime() {
        return createTime;
    }
 
    public void setCreateTime(Date createTime) {
        this.createTime = createTime;
    }
 
    public String getItemId() {
        return itemId;
    }
 
    public void setItemId(String itemId) {
        this.itemId = itemId;
    }
 
    public String getItemName() {
        return itemName;
    }
 
    public void setItemName(String itemName) {
        this.itemName = itemName;
    }
 
    public String getPic() {
        return pic;
    }
 
    public void setPic(String pic) {
        this.pic = pic;
    }
 
    public BigDecimal getPromotionPrice() {
        return promotionPrice;
    }
 
    public void setPromotionPrice(BigDecimal promotionPrice) {
        this.promotionPrice = promotionPrice;
    }
 
    public BigDecimal getPrice() {
        return price;
    }
 
    public void setPrice(BigDecimal price) {
        this.price = price;
    }
 
    public String getSellerNickName() {
        return sellerNickName;
    }
 
    public void setSellerNickName(String sellerNickName) {
        this.sellerNickName = sellerNickName;
    }
}