package com.qianwen.smartman.common.websocket.fms; import java.util.List; import com.qianwen.smartman.common.websocket.entity.FmsArea; import com.qianwen.smartman.common.websocket.entity.FmsWorkstation; import com.qianwen.core.websocket.message.AbstractJsonWebSocketMessage; public class FmsVisualDataResponseMessage extends AbstractJsonWebSocketMessage { private List fmsAreaList; private List fmsCarryList; private List fmsManualStationList; private List fmsWorkstationList; private String isAuto; public FmsVisualDataResponseMessage() { super("fmsVisualData"); } public List getFmsAreaList() { return this.fmsAreaList; } public void setFmsAreaList(List fmsAreaList) { this.fmsAreaList = fmsAreaList; } public List getFmsWorkstationList() { return this.fmsWorkstationList; } public void setFmsWorkstationList(List fmsWorkstationList) { this.fmsWorkstationList = fmsWorkstationList; } public List getFmsCarryList() { return this.fmsCarryList; } public void setFmsCarryList(List fmsCarryList) { this.fmsCarryList = fmsCarryList; } public List getFmsManualStationList() { return this.fmsManualStationList; } public void setFmsManualStationList(List fmsManualStationList) { this.fmsManualStationList = fmsManualStationList; } public String getIsAuto() { return this.isAuto; } public void setIsAuto(String isAuto) { this.isAuto = isAuto; } }