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;
|
//用户id
|
private String uid;
|
//旅游名称
|
private String name;
|
//旅游去向(国内、国外)
|
private String destination;
|
//旅游开始时间
|
private String startTime;
|
//旅游结束时间
|
private String endTime;
|
//旅游性质(自费、公费、邀请)
|
private String property;
|
//旅游方式(参团、自由行、自驾游、半自由半自驾)
|
private String manner;
|
//总交通费
|
private double travelTotal;
|
//总住宿费
|
private double stayTotal;
|
//总餐饮费
|
private double eatTotal;
|
//总门票费
|
private double entranceTotal;
|
//团费
|
private double groupTotal;
|
//总金额
|
private double totalPrice;
|
//感言
|
private String spee;
|
|
public String getId() {
|
return id;
|
}
|
|
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() {
|
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 getProperty() {
|
return property;
|
}
|
|
public void setProperty(String property) {
|
this.property = property;
|
}
|
|
public String getManner() {
|
return manner;
|
}
|
|
public void setManner(String manner) {
|
this.manner = manner;
|
}
|
|
public double getTravelTotal() {
|
return travelTotal;
|
}
|
|
public void setTravelTotal(double travelTotal) {
|
this.travelTotal = travelTotal;
|
}
|
|
public double getStayTotal() {
|
return stayTotal;
|
}
|
|
public void setStayTotal(double stayTotal) {
|
this.stayTotal = stayTotal;
|
}
|
|
public double getEatTotal() {
|
return eatTotal;
|
}
|
|
public void setEatTotal(double eatTotal) {
|
this.eatTotal = eatTotal;
|
}
|
|
public double getEntranceTotal() {
|
return entranceTotal;
|
}
|
|
public void setEntranceTotal(double entranceTotal) {
|
this.entranceTotal = entranceTotal;
|
}
|
|
public double getGroupTotal() {
|
return groupTotal;
|
}
|
|
public void setGroupTotal(double groupTotal) {
|
this.groupTotal = groupTotal;
|
}
|
|
public double getTotalPrice() {
|
return totalPrice;
|
}
|
|
public void setTotalPrice(double totalPrice) {
|
this.totalPrice = totalPrice;
|
}
|
|
public String getSpee() {
|
return spee;
|
}
|
|
public void setSpee(String spee) {
|
this.spee = spee;
|
}
|
}
|