package com.taoke.autopay.android.data.local.entity;
|
|
import java.io.Serializable;
|
|
public class TaskQueueInfo implements Serializable {
|
public final static int STATE_EMPTY=1;
|
public final static int STATE_PAY_COUNT_LIMIT=2;
|
public final static int STATE_PAY_SAFE_LIMIT = 3;// 支付安全受限
|
public final static int STATE_JOB_FINISH = 4;// 支付任务结束
|
private int state;
|
|
|
public TaskQueueInfo(){
|
|
}
|
|
public TaskQueueInfo(int state) {
|
this.state = state;
|
}
|
|
public int getState() {
|
return state;
|
}
|
|
public void setState(int state) {
|
this.state = state;
|
}
|
}
|