liugl
2020-11-02 c2877e03172d68af0a0eacd56ac0f5d4c67c6f26
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
package com.okgoincar.bean;
 
public class LocalOrderBean {
    public static String LOCAL_ORDER_INFO = "LOCAL_ORDER_INFO";
    private Long startTime = 0L;
    private Long endTime = 0L;
    private String orderId;
    private String orderType = "2";
    private double money = 0.0;
    private String userId;
 
    public String getUserId() {
        return userId;
    }
 
    public void setUserId(String userId) {
        this.userId = userId;
    }
 
    public Long getStartTime() {
        return startTime;
    }
 
    public void setStartTime(Long startTime) {
        this.startTime = startTime;
    }
 
    public Long getEndTime() {
        return endTime;
    }
 
    public void setEndTime(Long endTime) {
        this.endTime = endTime;
    }
 
    public String getOrderId() {
        return orderId;
    }
 
    public void setOrderId(String orderId) {
        this.orderId = orderId;
    }
 
    public String getOrderType() {
        return orderType;
    }
 
    public void setOrderType(String orderType) {
        this.orderType = orderType;
    }
 
    public double getMoney() {
        return money;
    }
 
    public void setMoney(double money) {
        this.money = money;
    }
 
 
}