Sign in

周鸿 / exam · Files

Logo

GitLab

  • Back to dashboard
  • Project
  • Activity
  • Files
  • Commits
  • Network
  • Graphs
  • Milestones
  • Issues 0
  • Merge Requests 0
  • Labels
  • Wiki
  • exam
  • ..
  • websocket
  • RemoteOperation.java
  • 提交在线考试代码
    e0678c2b
    pengcheng authored
    2022-04-26 16:23:34 +0800  
    Browse Code »
RemoteOperation.java 437 Bytes
Edit Raw Blame History
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
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;
    }
}