| | |
| | | package com.application.zhangshi_app_android.bean; |
| | | |
| | | import java.io.Serializable; |
| | | import java.util.ArrayList; |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * @author Ljj |
| | | * @date 2023.04.28. 21:17 |
| | | * @desc |
| | | * @desc 完美旅途记录 |
| | | */ |
| | | public class TourismBean implements Serializable { |
| | | //标题 |
| | | private String title; |
| | | //开始时间 |
| | | //id |
| | | private String id; |
| | | //用户id |
| | | private String uid; |
| | | //旅游名称 |
| | | private String name; |
| | | //旅游去向(国内、国外) |
| | | private String destination; |
| | | //旅游开始时间 |
| | | private String startTime; |
| | | //结束时间 |
| | | //旅游结束时间 |
| | | private String endTime; |
| | | //总天数 |
| | | private String totalDay; |
| | | //旅游性质(自费、公费、邀请) |
| | | private String property; |
| | | //旅游方式(参团、自由行、自驾游、半自由半自驾) |
| | | private String manner; |
| | | //总交通费 |
| | | private double travelTotal; |
| | | //总住宿费 |
| | | private double stayTotal; |
| | | //总餐饮费 |
| | | private double eatTotal; |
| | | //总门票费 |
| | | private double entranceTotal; |
| | | //团费 |
| | | private double groupTotal; |
| | | //总金额 |
| | | private String totalMoney; |
| | | //餐费 |
| | | private String mealMoney; |
| | | //住宿费 |
| | | private String hotelMoney; |
| | | //交通费 |
| | | private String trafficMoney; |
| | | //购物 |
| | | private String shoppingMoney; |
| | | //门票 |
| | | private String ticketMoney; |
| | | //每日消费详细记录 |
| | | private List<DailyConsumeRecordBean> dailyConsumeRecordBeans; |
| | | private double totalPrice; |
| | | //感言 |
| | | private String spee; |
| | | |
| | | public String getTitle() { |
| | | return title; |
| | | public String getId() { |
| | | return id; |
| | | } |
| | | |
| | | public void setTitle(String title) { |
| | | this.title = title; |
| | | public void setId(String id) { |
| | | this.id = id; |
| | | } |
| | | |
| | | public String getUid() { |
| | | return uid; |
| | | } |
| | | |
| | | public void setUid(String uid) { |
| | | this.uid = uid; |
| | | } |
| | | |
| | | public String getName() { |
| | | return name; |
| | | } |
| | | |
| | | public void setName(String name) { |
| | | this.name = name; |
| | | } |
| | | |
| | | public String getDestination() { |
| | | return destination; |
| | | } |
| | | |
| | | public void setDestination(String destination) { |
| | | this.destination = destination; |
| | | } |
| | | |
| | | public String getStartTime() { |
| | |
| | | this.endTime = endTime; |
| | | } |
| | | |
| | | public String getTotalDay() { |
| | | return totalDay; |
| | | public String getProperty() { |
| | | return property; |
| | | } |
| | | |
| | | public void setTotalDay(String totalDay) { |
| | | this.totalDay = totalDay; |
| | | public void setProperty(String property) { |
| | | this.property = property; |
| | | } |
| | | |
| | | public String getTotalMoney() { |
| | | return totalMoney; |
| | | public String getManner() { |
| | | return manner; |
| | | } |
| | | |
| | | public void setTotalMoney(String totalMoney) { |
| | | this.totalMoney = totalMoney; |
| | | public void setManner(String manner) { |
| | | this.manner = manner; |
| | | } |
| | | |
| | | public String getMealMoney() { |
| | | return mealMoney; |
| | | public double getTravelTotal() { |
| | | return travelTotal; |
| | | } |
| | | |
| | | public void setMealMoney(String mealMoney) { |
| | | this.mealMoney = mealMoney; |
| | | public void setTravelTotal(double travelTotal) { |
| | | this.travelTotal = travelTotal; |
| | | } |
| | | |
| | | public String getHotelMoney() { |
| | | return hotelMoney; |
| | | public double getStayTotal() { |
| | | return stayTotal; |
| | | } |
| | | |
| | | public void setHotelMoney(String hotelMoney) { |
| | | this.hotelMoney = hotelMoney; |
| | | public void setStayTotal(double stayTotal) { |
| | | this.stayTotal = stayTotal; |
| | | } |
| | | |
| | | public String getTrafficMoney() { |
| | | return trafficMoney; |
| | | public double getEatTotal() { |
| | | return eatTotal; |
| | | } |
| | | |
| | | public void setTrafficMoney(String trafficMoney) { |
| | | this.trafficMoney = trafficMoney; |
| | | public void setEatTotal(double eatTotal) { |
| | | this.eatTotal = eatTotal; |
| | | } |
| | | |
| | | public String getShoppingMoney() { |
| | | return shoppingMoney; |
| | | public double getEntranceTotal() { |
| | | return entranceTotal; |
| | | } |
| | | |
| | | public void setShoppingMoney(String shoppingMoney) { |
| | | this.shoppingMoney = shoppingMoney; |
| | | public void setEntranceTotal(double entranceTotal) { |
| | | this.entranceTotal = entranceTotal; |
| | | } |
| | | |
| | | public String getTicketMoney() { |
| | | return ticketMoney; |
| | | public double getGroupTotal() { |
| | | return groupTotal; |
| | | } |
| | | |
| | | public void setTicketMoney(String ticketMoney) { |
| | | this.ticketMoney = ticketMoney; |
| | | public void setGroupTotal(double groupTotal) { |
| | | this.groupTotal = groupTotal; |
| | | } |
| | | |
| | | public List<DailyConsumeRecordBean> getDailyConsumeRecordBeans() { |
| | | return dailyConsumeRecordBeans; |
| | | public double getTotalPrice() { |
| | | return totalPrice; |
| | | } |
| | | |
| | | public void setDailyConsumeRecordBeans(List<DailyConsumeRecordBean> dailyConsumeRecordBeans) { |
| | | this.dailyConsumeRecordBeans = dailyConsumeRecordBeans; |
| | | public void setTotalPrice(double totalPrice) { |
| | | this.totalPrice = totalPrice; |
| | | } |
| | | |
| | | public String getSpee() { |
| | | return spee; |
| | | } |
| | | |
| | | public void setSpee(String spee) { |
| | | this.spee = spee; |
| | | } |
| | | } |