E01Atomic.java 871 Bytes
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;
	}
}