Sign in

wms / wms_xianyangming · Files

Logo

GitLab

  • Back to group
  • Project
  • Activity
  • Files
  • Commits
  • Network
  • Graphs
  • Milestones
  • Issues 0
  • Merge Requests 0
  • Labels
  • Wiki
  • wms_xianyangming
  • ..
  • websocket
  • RemoteOperation.java
  • 增加websocket 长连接通信
    ff50c336
    游杰 authored
    2021-02-25 09:59:16 +0800  
    Browse Code »
RemoteOperation.java 426 Bytes
Edit Raw Blame History Permalink
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;
    }
}