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
26
27
28
| package com.example.agvcontroller.protocol;
|
| import java.io.Serializable;
|
| public class ForceSwitchAction implements IActionBody, Serializable {
|
| private static final long serialVersionUID = -3250235107705010316L;
|
| private Short pwd;
|
| @Override
| public byte[] writeToBytes() {
| return new byte[0];
| }
|
| @Override
| public void readFromBytes(byte[] messageBodyBytes) {
|
| }
|
| public Short getPwd() {
| return pwd;
| }
|
| public void setPwd(Short pwd) {
| this.pwd = pwd;
| }
| }
|
|