Blame view

src/main/java/com/huaheng/mobile/websocket/RemoteOperation.java 426 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
package com.huaheng.mobile.websocket;

public class RemoteOperation {

    private long vmc_no;
    private String operation;

    public long getVmc_no() {
        return vmc_no;
    }

    public void setVmc_no(long vmc_no) {
        this.vmc_no = vmc_no;
    }

    public String getOperation() {
        return operation;
    }

    public void setOperation(String operation) {
        this.operation = operation;
    }
}