Linjiajia
2023-10-07 31b7700b976a46901f67c5d7a00281ca4745fc9f
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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
package com.application.zhangshi_app_android.bean;
 
import java.io.Serializable;
 
/**
 * @author Ljj
 * @date 2023.04.28. 21:32
 * @desc 消费详细记录
 */
public class ConsumeRecordBean implements Serializable {
    //id
    private String id;
    //对应的旅游费用记录id
    private String feeId;
    //消费时间
    private String happenTime;
    //内容
    private String content;
    //总金额
    private double totalCost;
    //餐费
    private double eat;
    //住宿费
    private double stay;
    //交通费
    private double traffic;
    //购物
    private double shopping;
    //门票
    private double entrance;
    //每日金额
    private double dayCost;
 
 
    public String getId() {
        return id;
    }
 
    public void setId(String id) {
        this.id = id;
    }
 
    public String getFeeId() {
        return feeId;
    }
 
    public void setFeeId(String feeId) {
        this.feeId = feeId;
    }
 
    public String getHappenTime() {
        return happenTime;
    }
 
    public void setHappenTime(String happenTime) {
        this.happenTime = happenTime;
    }
 
    public String getContent() {
        return content;
    }
 
    public void setContent(String content) {
        this.content = content;
    }
 
    public double getTotalCost() {
        return totalCost;
    }
 
    public void setTotalCost(double totalCost) {
        this.totalCost = totalCost;
    }
 
    public double getEat() {
        return eat;
    }
 
    public void setEat(double eat) {
        this.eat = eat;
    }
 
 
    public double getStay() {
        return stay;
    }
 
    public void setStay(double stay) {
        this.stay = stay;
    }
 
    public void setStay(String stay) {
        this.stay = Double.parseDouble(stay);
    }
 
    public double getTraffic() {
        return traffic;
    }
 
    public void setTraffic(double traffic) {
        this.traffic = traffic;
    }
 
    public void setTraffic(String traffic) {
        this.traffic = Double.parseDouble(traffic);
    }
 
    public double getShopping() {
        return shopping;
    }
 
    public void setShopping(double shopping) {
        this.shopping = shopping;
    }
 
    public void setShopping(String shopping) {
        this.shopping = Double.parseDouble(shopping);
    }
 
    public double getEntrance() {
        return entrance;
    }
 
    public void setEntrance(double entrance) {
        this.entrance = entrance;
    }
 
    public void setEntrance(String entrance) {
        this.entrance = Double.parseDouble(entrance);
    }
 
    public double getDayCost() {
        return dayCost;
    }
 
    public void setDayCost(double dayCost) {
        this.dayCost = dayCost;
    }
 
 
}