package com.application.zhangshi_app_android.bean;
|
|
import java.io.Serializable;
|
|
/**
|
* @author Ljj
|
* @date 2023.04.28. 21:32
|
* @desc 消费详细记录
|
*/
|
public class ConsumeRecordBean implements Serializable {
|
//id
|
private String id;
|
//对应的旅游费用记录id
|
private String feeId;
|
//消费时间
|
private String happenTime;
|
//内容
|
private String content;
|
//总金额
|
private double totalCost;
|
//餐费
|
private double eat;
|
//住宿费
|
private double stay;
|
//交通费
|
private double traffic;
|
//购物
|
private double shopping;
|
//门票
|
private double entrance;
|
//每日金额
|
private double dayCost;
|
|
|
public String getId() {
|
return id;
|
}
|
|
public void setId(String id) {
|
this.id = id;
|
}
|
|
public String getFeeId() {
|
return feeId;
|
}
|
|
public void setFeeId(String feeId) {
|
this.feeId = feeId;
|
}
|
|
public String getHappenTime() {
|
return happenTime;
|
}
|
|
public void setHappenTime(String happenTime) {
|
this.happenTime = happenTime;
|
}
|
|
public String getContent() {
|
return content;
|
}
|
|
public void setContent(String content) {
|
this.content = content;
|
}
|
|
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 void setStay(String stay) {
|
this.stay = Double.parseDouble(stay);
|
}
|
|
public double getTraffic() {
|
return traffic;
|
}
|
|
public void setTraffic(double traffic) {
|
this.traffic = traffic;
|
}
|
|
public void setTraffic(String traffic) {
|
this.traffic = Double.parseDouble(traffic);
|
}
|
|
public double getShopping() {
|
return shopping;
|
}
|
|
public void setShopping(double shopping) {
|
this.shopping = shopping;
|
}
|
|
public void setShopping(String shopping) {
|
this.shopping = Double.parseDouble(shopping);
|
}
|
|
public double getEntrance() {
|
return entrance;
|
}
|
|
public void setEntrance(double entrance) {
|
this.entrance = entrance;
|
}
|
|
public void setEntrance(String entrance) {
|
this.entrance = Double.parseDouble(entrance);
|
}
|
|
public double getDayCost() {
|
return dayCost;
|
}
|
|
public void setDayCost(double dayCost) {
|
this.dayCost = dayCost;
|
}
|
|
|
}
|