1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
| package com.taoke.autopay.android.data.local.entity;
|
| public class QueueActionParams {
| public final static int ACTION_CLOSE = 1;
|
| private int action;
|
| public int getAction() {
| return action;
| }
|
| public void setAction(int action) {
| this.action = action;
| }
|
| public QueueActionParams() {
| }
|
| public QueueActionParams(int action) {
| this.action = action;
| }
| }
|
|