RemoteOperation.java
437 Bytes
package com.huaheng.mobile.websocket;
/**
* @author
*/
public class RemoteOperation {
private long vmcNo;
private String operation;
public long getVmcNo() {
return vmcNo;
}
public void setVmcNo(long vmcNo) {
this.vmcNo = vmcNo;
}
public String getOperation() {
return operation;
}
public void setOperation(String operation) {
this.operation = operation;
}
}