| | |
| | | * @desc 旅游经历 Bean |
| | | */ |
| | | public class TourismExperienceBean implements Serializable{ |
| | | //标题 |
| | | private String title; |
| | | //时间 |
| | | private String time; |
| | | //地点 |
| | | //id |
| | | private int id; |
| | | //对应的完美旅途id |
| | | private String cid; |
| | | //行程时间 |
| | | private String happenDate; |
| | | //行程地点 |
| | | private String address; |
| | | //人物 |
| | | private String person; |
| | | //旅期 |
| | | private String travelTime; |
| | | //持证旅游 |
| | | private String certificate; |
| | | //费用 |
| | | private String cost; |
| | | //公费/自费 |
| | | private int free; |
| | | //备注 |
| | | private String remark; |
| | | //景点 |
| | | private String scenic; |
| | | //门票费 |
| | | private double entrance; |
| | | //住宿酒店 |
| | | private String hotel; |
| | | //住宿费用 |
| | | private double stay; |
| | | //餐费 |
| | | private double eat; |
| | | //交通费 |
| | | private double travel; |
| | | //电子文件 |
| | | private String url; |
| | | //出行方式 |
| | | private String travelMode; |
| | | //车次or航班 |
| | | private String flight; |
| | | //使用证件 |
| | | private String document; |
| | | |
| | | public String getTitle() { |
| | | return title; |
| | | public int getId() { |
| | | return id; |
| | | } |
| | | |
| | | public void setTitle(String title) { |
| | | this.title = title; |
| | | public void setId(int id) { |
| | | this.id = id; |
| | | } |
| | | |
| | | public String getTime() { |
| | | return time; |
| | | public String getCid() { |
| | | return cid; |
| | | } |
| | | |
| | | public void setTime(String time) { |
| | | this.time = time; |
| | | public void setCid(String cid) { |
| | | this.cid = cid; |
| | | } |
| | | |
| | | public String getHappenDate() { |
| | | return happenDate; |
| | | } |
| | | |
| | | public void setHappenDate(String happenDate) { |
| | | this.happenDate = happenDate; |
| | | } |
| | | |
| | | public String getAddress() { |
| | |
| | | this.address = address; |
| | | } |
| | | |
| | | public String getPerson() { |
| | | return person; |
| | | public double getEntrance() { |
| | | return entrance; |
| | | } |
| | | |
| | | public void setPerson(String person) { |
| | | this.person = person; |
| | | public void setEntrance(double entrance) { |
| | | this.entrance = entrance; |
| | | } |
| | | |
| | | public String getTravelTime() { |
| | | return travelTime; |
| | | public String getHotel() { |
| | | return hotel; |
| | | } |
| | | |
| | | public void setTravelTime(String travelTime) { |
| | | this.travelTime = travelTime; |
| | | public void setHotel(String hotel) { |
| | | this.hotel = hotel; |
| | | } |
| | | |
| | | public String getCertificate() { |
| | | return certificate; |
| | | public double getStay() { |
| | | return stay; |
| | | } |
| | | |
| | | public void setCertificate(String certificate) { |
| | | this.certificate = certificate; |
| | | public void setStay(double stay) { |
| | | this.stay = stay; |
| | | } |
| | | |
| | | public String getCost() { |
| | | return cost; |
| | | public double getEat() { |
| | | return eat; |
| | | } |
| | | |
| | | public void setCost(String cost) { |
| | | this.cost = cost; |
| | | public void setEat(double eat) { |
| | | this.eat = eat; |
| | | } |
| | | |
| | | public int getFree() { |
| | | return free; |
| | | public double getTravel() { |
| | | return travel; |
| | | } |
| | | |
| | | public void setFree(int free) { |
| | | this.free = free; |
| | | } |
| | | |
| | | public String getRemark() { |
| | | return remark; |
| | | } |
| | | |
| | | public void setRemark(String remark) { |
| | | this.remark = remark; |
| | | public void setTravel(double travel) { |
| | | this.travel = travel; |
| | | } |
| | | |
| | | public String getUrl() { |
| | |
| | | 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; |
| | | } |
| | | } |