admin
2021-06-05 ddff7888bf7e754d12fb5fc85a58f3012f456490
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
package com.tejia.lijin.app.entity.goods;
 
import java.util.List;
 
public class GoodsDetailInfo {
 
 
    public static class HongBaoInfo {
        private int type;
        private String hongBaoMoney;
        private String hongBaoDesc;
        private String desc;
        private String finalMoney;
        private List<PriceInfo> priceInfoList;
 
 
        public int getType() {
            return type;
        }
 
        public void setType(int type) {
            this.type = type;
        }
 
        public String getHongBaoMoney() {
            return hongBaoMoney;
        }
 
        public void setHongBaoMoney(String hongBaoMoney) {
            this.hongBaoMoney = hongBaoMoney;
        }
 
        public String getHongBaoDesc() {
            return hongBaoDesc;
        }
 
        public void setHongBaoDesc(String hongBaoDesc) {
            this.hongBaoDesc = hongBaoDesc;
        }
 
        public String getDesc() {
            return desc;
        }
 
        public void setDesc(String desc) {
            this.desc = desc;
        }
 
        public String getFinalMoney() {
            return finalMoney;
        }
 
        public void setFinalMoney(String finalMoney) {
            this.finalMoney = finalMoney;
        }
 
        public List<PriceInfo> getPriceInfoList() {
            return priceInfoList;
        }
 
        public void setPriceInfoList(List<PriceInfo> priceInfoList) {
            this.priceInfoList = priceInfoList;
        }
    }
 
 
    public static class PriceInfo {
        private String priceName;
        private String money;
 
        public String getPriceName() {
            return priceName;
        }
 
        public void setPriceName(String priceName) {
            this.priceName = priceName;
        }
 
        public String getMoney() {
            return money;
        }
 
        public void setMoney(String money) {
            this.money = money;
        }
    }
 
 
}