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 {
|
//内容
|
private String content;
|
//总金额
|
private String totalMoney;
|
//餐费
|
private String mealMoney;
|
//住宿费
|
private String hotelMoney;
|
//交通费
|
private String trafficMoney;
|
//购物
|
private String shoppingMoney;
|
//门票
|
private String ticketMoney;
|
|
public String getContent() {
|
return content;
|
}
|
|
public void setContent(String content) {
|
this.content = content;
|
}
|
|
public String getTotalMoney() {
|
return totalMoney;
|
}
|
|
public void setTotalMoney(String totalMoney) {
|
this.totalMoney = totalMoney;
|
}
|
|
public String getMealMoney() {
|
return mealMoney;
|
}
|
|
public void setMealMoney(String mealMoney) {
|
this.mealMoney = mealMoney;
|
}
|
|
public String getHotelMoney() {
|
return hotelMoney;
|
}
|
|
public void setHotelMoney(String hotelMoney) {
|
this.hotelMoney = hotelMoney;
|
}
|
|
public String getTrafficMoney() {
|
return trafficMoney;
|
}
|
|
public void setTrafficMoney(String trafficMoney) {
|
this.trafficMoney = trafficMoney;
|
}
|
|
public String getShoppingMoney() {
|
return shoppingMoney;
|
}
|
|
public void setShoppingMoney(String shoppingMoney) {
|
this.shoppingMoney = shoppingMoney;
|
}
|
|
public String getTicketMoney() {
|
return ticketMoney;
|
}
|
|
public void setTicketMoney(String ticketMoney) {
|
this.ticketMoney = ticketMoney;
|
}
|
}
|