admin
2024-06-25 55240ee74a7d6e346b001d6e90b0762a7f456c10
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;
    }
}