package com.application.zhangshi_app_android.bean;
|
|
import java.io.Serializable;
|
import java.util.List;
|
|
/**
|
* @author Ljj
|
* @date 2023.04.28. 21:17
|
* @desc
|
*/
|
public class TourismBean implements Serializable {
|
//标题
|
private String title;
|
//开始时间
|
private String startTime;
|
//结束时间
|
private String endTime;
|
//总天数
|
private String totalDay;
|
//总金额
|
private String totalMoney;
|
//餐费
|
private String mealMoney;
|
//住宿费
|
private String hotelMoney;
|
//交通费
|
private String trafficMoney;
|
//购物
|
private String shoppingMoney;
|
//门票
|
private String ticketMoney;
|
//每日消费详细记录
|
private List<DailyConsumeRecordBean> dailyConsumeRecordBeans;
|
|
public String getTitle() {
|
return title;
|
}
|
|
public void setTitle(String title) {
|
this.title = title;
|
}
|
|
public String getStartTime() {
|
return startTime;
|
}
|
|
public void setStartTime(String startTime) {
|
this.startTime = startTime;
|
}
|
|
public String getEndTime() {
|
return endTime;
|
}
|
|
public void setEndTime(String endTime) {
|
this.endTime = endTime;
|
}
|
|
public String getTotalDay() {
|
return totalDay;
|
}
|
|
public void setTotalDay(String totalDay) {
|
this.totalDay = totalDay;
|
}
|
|
public String getTotalMoney() {
|
return totalMoney;
|
}
|
|
public void setTotalMoney(String totalMoney) {
|
this.totalMoney = totalMoney;
|
}
|
|
public String getMealMoney() {
|
return mealMoney;
|
}
|
|
public void setMealMoney(String mealMoney) {
|
this.mealMoney = mealMoney;
|
}
|
|
public String getHotelMoney() {
|
return hotelMoney;
|
}
|
|
public void setHotelMoney(String hotelMoney) {
|
this.hotelMoney = hotelMoney;
|
}
|
|
public String getTrafficMoney() {
|
return trafficMoney;
|
}
|
|
public void setTrafficMoney(String trafficMoney) {
|
this.trafficMoney = trafficMoney;
|
}
|
|
public String getShoppingMoney() {
|
return shoppingMoney;
|
}
|
|
public void setShoppingMoney(String shoppingMoney) {
|
this.shoppingMoney = shoppingMoney;
|
}
|
|
public String getTicketMoney() {
|
return ticketMoney;
|
}
|
|
public void setTicketMoney(String ticketMoney) {
|
this.ticketMoney = ticketMoney;
|
}
|
|
public List<DailyConsumeRecordBean> getDailyConsumeRecordBeans() {
|
return dailyConsumeRecordBeans;
|
}
|
|
public void setDailyConsumeRecordBeans(List<DailyConsumeRecordBean> dailyConsumeRecordBeans) {
|
this.dailyConsumeRecordBeans = dailyConsumeRecordBeans;
|
}
|
}
|