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 旅游费用记录
|
*/
|
public class TourismBean implements Serializable {
|
//id
|
private String id;
|
//标题
|
private String title;
|
//开始时间
|
private String startTime;
|
//结束时间
|
private String endTime;
|
//创建时间
|
private String createTime;
|
//总天数
|
private String totalDay;
|
//总金额
|
private double totalCost;
|
//餐费
|
private double eat;
|
//住宿费
|
private double stay;
|
//交通费
|
private double traffic;
|
//购物
|
private double shopping;
|
//门票
|
private double entrance;
|
//用户id
|
private String myId;
|
//每日消费详细记录
|
private List<ConsumeRecordBean> detailList = new ArrayList<>();
|
|
public String getId() {
|
return id;
|
}
|
|
public void setId(String id) {
|
this.id = id;
|
}
|
|
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 getCreateTime() {
|
return createTime;
|
}
|
|
public void setCreateTime(String createTime) {
|
this.createTime = createTime;
|
}
|
|
public String getTotalDay() {
|
return totalDay;
|
}
|
|
public void setTotalDay(String totalDay) {
|
this.totalDay = totalDay;
|
}
|
|
public double getTotalCost() {
|
return totalCost;
|
}
|
|
public void setTotalCost(double totalCost) {
|
this.totalCost = totalCost;
|
}
|
|
public double getEat() {
|
return eat;
|
}
|
|
public void setEat(double eat) {
|
this.eat = eat;
|
}
|
|
public double getStay() {
|
return stay;
|
}
|
|
public void setStay(double stay) {
|
this.stay = stay;
|
}
|
|
public double getTraffic() {
|
return traffic;
|
}
|
|
public void setTraffic(double traffic) {
|
this.traffic = traffic;
|
}
|
|
public double getShopping() {
|
return shopping;
|
}
|
|
public void setShopping(double shopping) {
|
this.shopping = shopping;
|
}
|
|
public double getEntrance() {
|
return entrance;
|
}
|
|
public void setEntrance(double entrance) {
|
this.entrance = entrance;
|
}
|
|
public String getMyId() {
|
return myId;
|
}
|
|
public void setMyId(String myId) {
|
this.myId = myId;
|
}
|
|
public List<ConsumeRecordBean> getDetailList() {
|
return detailList;
|
}
|
|
public void setDetailList(List<ConsumeRecordBean> detailList) {
|
this.detailList = detailList;
|
}
|
}
|