package com.okgoincar.bean;
|
|
import java.util.List;
|
|
public class OrderStatueBean {
|
|
/**
|
* code : 0
|
* data : [{"orderId":0,"orderType":0,"state":0}]
|
* msg : string
|
*/
|
|
private int code;
|
private String msg;
|
private List<DataBean> data;
|
|
public int getCode() {
|
return code;
|
}
|
|
public void setCode(int code) {
|
this.code = code;
|
}
|
|
public String getMsg() {
|
return msg;
|
}
|
|
public void setMsg(String msg) {
|
this.msg = msg;
|
}
|
|
public List<DataBean> getData() {
|
return data;
|
}
|
|
public void setData(List<DataBean> data) {
|
this.data = data;
|
}
|
|
public static class DataBean {
|
/**
|
* orderId : 0
|
* orderType : 0
|
* state : 0
|
*/
|
|
private int orderId;
|
private int orderType;
|
private int state;
|
|
public int getOrderId() {
|
return orderId;
|
}
|
|
public void setOrderId(int orderId) {
|
this.orderId = orderId;
|
}
|
|
public int getOrderType() {
|
return orderType;
|
}
|
|
public void setOrderType(int orderType) {
|
this.orderType = orderType;
|
}
|
|
public int getState() {
|
return state;
|
}
|
|
public void setState(int state) {
|
this.state = state;
|
}
|
}
|
}
|