| | |
| | | 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 { |
| | | //id |
| | | private String id; |
| | | //标题 |
| | | private String title; |
| | | //开始时间 |
| | | private String startTime; |
| | | //结束时间 |
| | | private String endTime; |
| | | //创建时间 |
| | | private String createTime; |
| | | //总天数 |
| | | private String totalDay; |
| | | //总金额 |
| | | private String totalMoney; |
| | | private double totalCost; |
| | | //餐费 |
| | | private String mealMoney; |
| | | private double eat; |
| | | //住宿费 |
| | | private String hotelMoney; |
| | | private double stay; |
| | | //交通费 |
| | | private String trafficMoney; |
| | | private double traffic; |
| | | //购物 |
| | | private String shoppingMoney; |
| | | private double shopping; |
| | | //门票 |
| | | private String ticketMoney; |
| | | private double entrance; |
| | | //用户id |
| | | private String myId; |
| | | //每日消费详细记录 |
| | | private List<DailyConsumeRecordBean> dailyConsumeRecordBeans; |
| | | private List<ConsumeRecordBean> detailList = new ArrayList<>(); |
| | | |
| | | public String getId() { |
| | | return id; |
| | | } |
| | | |
| | | public void setId(String id) { |
| | | this.id = id; |
| | | } |
| | | |
| | | public String getTitle() { |
| | | return title; |
| | |
| | | this.endTime = endTime; |
| | | } |
| | | |
| | | public String getCreateTime() { |
| | | return createTime; |
| | | } |
| | | |
| | | public void setCreateTime(String createTime) { |
| | | this.createTime = createTime; |
| | | } |
| | | |
| | | public String getTotalDay() { |
| | | return totalDay; |
| | | } |
| | |
| | | this.totalDay = totalDay; |
| | | } |
| | | |
| | | public String getTotalMoney() { |
| | | return totalMoney; |
| | | public double getTotalCost() { |
| | | return totalCost; |
| | | } |
| | | |
| | | public void setTotalMoney(String totalMoney) { |
| | | this.totalMoney = totalMoney; |
| | | public void setTotalCost(double totalCost) { |
| | | this.totalCost = totalCost; |
| | | } |
| | | |
| | | public String getMealMoney() { |
| | | return mealMoney; |
| | | public double getEat() { |
| | | return eat; |
| | | } |
| | | |
| | | public void setMealMoney(String mealMoney) { |
| | | this.mealMoney = mealMoney; |
| | | public void setEat(double eat) { |
| | | this.eat = eat; |
| | | } |
| | | |
| | | public String getHotelMoney() { |
| | | return hotelMoney; |
| | | public double getStay() { |
| | | return stay; |
| | | } |
| | | |
| | | public void setHotelMoney(String hotelMoney) { |
| | | this.hotelMoney = hotelMoney; |
| | | public void setStay(double stay) { |
| | | this.stay = stay; |
| | | } |
| | | |
| | | public String getTrafficMoney() { |
| | | return trafficMoney; |
| | | public double getTraffic() { |
| | | return traffic; |
| | | } |
| | | |
| | | public void setTrafficMoney(String trafficMoney) { |
| | | this.trafficMoney = trafficMoney; |
| | | public void setTraffic(double traffic) { |
| | | this.traffic = traffic; |
| | | } |
| | | |
| | | public String getShoppingMoney() { |
| | | return shoppingMoney; |
| | | public double getShopping() { |
| | | return shopping; |
| | | } |
| | | |
| | | public void setShoppingMoney(String shoppingMoney) { |
| | | this.shoppingMoney = shoppingMoney; |
| | | public void setShopping(double shopping) { |
| | | this.shopping = shopping; |
| | | } |
| | | |
| | | public String getTicketMoney() { |
| | | return ticketMoney; |
| | | public double getEntrance() { |
| | | return entrance; |
| | | } |
| | | |
| | | public void setTicketMoney(String ticketMoney) { |
| | | this.ticketMoney = ticketMoney; |
| | | public void setEntrance(double entrance) { |
| | | this.entrance = entrance; |
| | | } |
| | | |
| | | public List<DailyConsumeRecordBean> getDailyConsumeRecordBeans() { |
| | | return dailyConsumeRecordBeans; |
| | | public String getMyId() { |
| | | return myId; |
| | | } |
| | | |
| | | public void setDailyConsumeRecordBeans(List<DailyConsumeRecordBean> dailyConsumeRecordBeans) { |
| | | this.dailyConsumeRecordBeans = dailyConsumeRecordBeans; |
| | | public void setMyId(String myId) { |
| | | this.myId = myId; |
| | | } |
| | | |
| | | public List<ConsumeRecordBean> getDetailList() { |
| | | return detailList; |
| | | } |
| | | |
| | | public void setDetailList(List<ConsumeRecordBean> detailList) { |
| | | this.detailList = detailList; |
| | | } |
| | | } |