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; } }