package com.taoke.autopay.vo;
|
|
import java.util.Date;
|
|
public class KeyOrderVO {
|
public final static int STATE_NOT_PROCESS = 0;
|
public final static int STATE_PROCESSED = 1;
|
public final static int STATE_PROCESS_ERROR = 2;
|
|
private String id;
|
private String key;
|
private int state;
|
private Date createTime;
|
|
public String getId() {
|
return id;
|
}
|
|
public void setId(String id) {
|
this.id = id;
|
}
|
|
public String getKey() {
|
return key;
|
}
|
|
public void setKey(String key) {
|
this.key = key;
|
}
|
|
public int getState() {
|
return state;
|
}
|
|
public void setState(int state) {
|
this.state = state;
|
}
|
|
public Date getCreateTime() {
|
return createTime;
|
}
|
|
public void setCreateTime(Date createTime) {
|
this.createTime = createTime;
|
}
|
}
|