package com.okgoincar.bean;
|
|
public class LocalOrderBean {
|
public static String LOCAL_ORDER_INFO = "LOCAL_ORDER_INFO";
|
private Long startTime;
|
private Long endTime;
|
private String orderId;
|
private String orderType = "2";
|
private double money = 0.0;
|
|
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;
|
}
|
}
|