package com.szpg.plc.message.command.write; import com.szpg.plc.message.AppMessageConstants; import com.szpg.plc.message.command.WriteMemoryCommand; import com.szpg.plc.message.response.WriteMemoryCommandResponse; public class SetO2ThresholdWordCommand extends WriteMemoryCommand { /** * */ private static final long serialVersionUID = -4164791631385024850L; private float threshold; public float getThreshold() { return threshold; } public void setThreshold(float threshold) { this.threshold = threshold; } @Override public String getCommandType() { return AppMessageConstants.CMD_TYPE_SETO2THRESHOLD; } @Override public Class<WriteMemoryCommandResponse> getResponseClass() { return WriteMemoryCommandResponse.class; } @Override public String toString() { return "向终端[" + getDestinationId() + "]发送设置氧气浓度报警阈值命令[" + threshold + "]"; } }