E01Atomic.java
871 Bytes
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
package th.co.ais.ssbsrfc.instance;
public class E01Atomic {
private String command;
private String name;
private long value;
private long min;
private long max;
public E01Atomic() {
super();
}
public E01Atomic(String command, String name, long value) {
super();
this.command = command;
this.name = name;
this.value = value;
}
public String getCommand() {
return command;
}
public void setCommand(String command) {
this.command = command;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public long getValue() {
return value;
}
public void setValue(long value) {
this.value = value;
}
public long getMin() {
return min;
}
public void setMin(long min) {
this.min = min;
}
public long getMax() {
return max;
}
public void setMax(long max) {
this.max = max;
}
}