Linjiajia
2023-10-07 31b7700b976a46901f67c5d7a00281ca4745fc9f
app/src/main/java/com/application/zhangshi_app_android/bean/TourismBean.java
@@ -7,37 +7,37 @@
/**
 * @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 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<>();
    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;
    public String getId() {
        return id;
@@ -47,12 +47,28 @@
        this.id = id;
    }
    public String getTitle() {
        return title;
    public String getUid() {
        return uid;
    }
    public void setTitle(String title) {
        this.title = title;
    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() {
@@ -71,83 +87,67 @@
        this.endTime = endTime;
    }
    public String getCreateTime() {
        return createTime;
    public String getProperty() {
        return property;
    }
    public void setCreateTime(String createTime) {
        this.createTime = createTime;
    public void setProperty(String property) {
        this.property = property;
    }
    public String getTotalDay() {
        return totalDay;
    public String getManner() {
        return manner;
    }
    public void setTotalDay(String totalDay) {
        this.totalDay = totalDay;
    public void setManner(String manner) {
        this.manner = manner;
    }
    public double getTotalCost() {
        return totalCost;
    public double getTravelTotal() {
        return travelTotal;
    }
    public void setTotalCost(double totalCost) {
        this.totalCost = totalCost;
    public void setTravelTotal(double travelTotal) {
        this.travelTotal = travelTotal;
    }
    public double getEat() {
        return eat;
    public double getStayTotal() {
        return stayTotal;
    }
    public void setEat(double eat) {
        this.eat = eat;
    public void setStayTotal(double stayTotal) {
        this.stayTotal = stayTotal;
    }
    public double getStay() {
        return stay;
    public double getEatTotal() {
        return eatTotal;
    }
    public void setStay(double stay) {
        this.stay = stay;
    public void setEatTotal(double eatTotal) {
        this.eatTotal = eatTotal;
    }
    public double getTraffic() {
        return traffic;
    public double getEntranceTotal() {
        return entranceTotal;
    }
    public void setTraffic(double traffic) {
        this.traffic = traffic;
    public void setEntranceTotal(double entranceTotal) {
        this.entranceTotal = entranceTotal;
    }
    public double getShopping() {
        return shopping;
    public double getGroupTotal() {
        return groupTotal;
    }
    public void setShopping(double shopping) {
        this.shopping = shopping;
    public void setGroupTotal(double groupTotal) {
        this.groupTotal = groupTotal;
    }
    public double getEntrance() {
        return entrance;
    public double getTotalPrice() {
        return totalPrice;
    }
    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;
    public void setTotalPrice(double totalPrice) {
        this.totalPrice = totalPrice;
    }
}