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
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
package com.application.zhangshi_app_android.bean;
 
import java.io.Serializable;
 
/**
 * @author Ljj
 * @date 2023.05.08. 20:33
 * @desc 旅游经历 Bean
 */
public class TourismExperienceBean implements Serializable{
    //id
    private int id;
    //对应的完美旅途id
    private String cid;
    //行程时间
    private String happenDate;
    //行程地点
    private String address;
    //景点
    private String scenic;
    //门票费
    private double entrance;
    //住宿酒店
    private String hotel;
    //住宿费用
    private double stay;
    //餐费
    private double eat;
    //交通费
    private double travel;
    //其他费用
    private double otherCost;
    //备注
    private String backInfo;
    //电子文件
    private String url;
    //出行方式
    private String travelMode;
    //车次or航班
    private String flight;
    //使用证件
    private String document;
 
    public int getId() {
        return id;
    }
 
    public void setId(int id) {
        this.id = id;
    }
 
    public String getCid() {
        return cid;
    }
 
    public void setCid(String cid) {
        this.cid = cid;
    }
 
    public String getHappenDate() {
        return happenDate;
    }
 
    public void setHappenDate(String happenDate) {
        this.happenDate = happenDate;
    }
 
    public String getAddress() {
        return address;
    }
 
    public void setAddress(String address) {
        this.address = address;
    }
 
    public double getEntrance() {
        return entrance;
    }
 
    public void setEntrance(double entrance) {
        this.entrance = entrance;
    }
 
    public String getHotel() {
        return hotel;
    }
 
    public void setHotel(String hotel) {
        this.hotel = hotel;
    }
 
    public double getStay() {
        return stay;
    }
 
    public void setStay(double stay) {
        this.stay = stay;
    }
 
    public double getEat() {
        return eat;
    }
 
    public void setEat(double eat) {
        this.eat = eat;
    }
 
    public double getTravel() {
        return travel;
    }
 
    public void setTravel(double travel) {
        this.travel = travel;
    }
 
    public String getUrl() {
        return url;
    }
 
    public void setUrl(String url) {
        this.url = url;
    }
 
    public String getTravelMode() {
        return travelMode;
    }
 
    public void setTravelMode(String travelMode) {
        this.travelMode = travelMode;
    }
 
    public String getFlight() {
        return flight;
    }
 
    public void setFlight(String flight) {
        this.flight = flight;
    }
 
    public String getDocument() {
        return document;
    }
 
    public void setDocument(String document) {
        this.document = document;
    }
 
    public String getScenic() {
        return scenic;
    }
 
    public void setScenic(String scenic) {
        this.scenic = scenic;
    }
 
    public double getOtherCost() {
        return otherCost;
    }
 
    public void setOtherCost(double otherCost) {
        this.otherCost = otherCost;
    }
 
    public String getBackInfo() {
        return backInfo;
    }
 
    public void setBackInfo(String backInfo) {
        this.backInfo = backInfo;
    }
}