Linjiajia
2023-04-28 15cd434674051e5d29215b47862686c773625fd4
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
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;
    }
}