package com.tejia.lijin.app.entity;
|
|
import com.google.gson.annotations.Expose;
|
|
import java.io.Serializable;
|
|
/**
|
* Created by weikou2015 on 2018/11/15.
|
*/
|
|
public class LostOrder implements Serializable {
|
|
@Expose
|
private String id;
|
@Expose
|
private String orderId;
|
@Expose
|
private String type;
|
@Expose
|
private String state;
|
@Expose
|
private String createTime;
|
@Expose
|
private String handleTime;
|
@Expose
|
private String stateDesc;
|
|
public String getId() {
|
return id;
|
}
|
|
public void setId(String id) {
|
this.id = id;
|
}
|
|
public String getOrderId() {
|
return orderId;
|
}
|
|
public void setOrderId(String orderId) {
|
this.orderId = orderId;
|
}
|
|
public String getType() {
|
return type;
|
}
|
|
public void setType(String type) {
|
this.type = type;
|
}
|
|
public String getState() {
|
return state;
|
}
|
|
public void setState(String state) {
|
this.state = state;
|
}
|
|
public String getCreateTime() {
|
return createTime;
|
}
|
|
public void setCreateTime(String createTime) {
|
this.createTime = createTime;
|
}
|
|
public String getHandleTime() {
|
return handleTime;
|
}
|
|
public void setHandleTime(String handleTime) {
|
this.handleTime = handleTime;
|
}
|
|
public String getStateDesc() {
|
return stateDesc;
|
}
|
|
public void setStateDesc(String stateDesc) {
|
this.stateDesc = stateDesc;
|
}
|
}
|