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;
|
|
/* loaded from: blade-api.jar:BOOT-INF/classes/org/springblade/common/websocket/fms/FmsVisualDataResponseMessage.class */
|
public class FmsVisualDataResponseMessage extends AbstractJsonWebSocketMessage {
|
private List<FmsArea> fmsAreaList;
|
private List<FmsWorkstation> fmsCarryList;
|
private List<FmsWorkstation> fmsManualStationList;
|
private List<FmsWorkstation> fmsWorkstationList;
|
private String isAuto;
|
|
public FmsVisualDataResponseMessage() {
|
super("fmsVisualData");
|
}
|
|
public List<FmsArea> getFmsAreaList() {
|
return this.fmsAreaList;
|
}
|
|
public void setFmsAreaList(List<FmsArea> fmsAreaList) {
|
this.fmsAreaList = fmsAreaList;
|
}
|
|
public List<FmsWorkstation> getFmsWorkstationList() {
|
return this.fmsWorkstationList;
|
}
|
|
public void setFmsWorkstationList(List<FmsWorkstation> fmsWorkstationList) {
|
this.fmsWorkstationList = fmsWorkstationList;
|
}
|
|
public List<FmsWorkstation> getFmsCarryList() {
|
return this.fmsCarryList;
|
}
|
|
public void setFmsCarryList(List<FmsWorkstation> fmsCarryList) {
|
this.fmsCarryList = fmsCarryList;
|
}
|
|
public List<FmsWorkstation> getFmsManualStationList() {
|
return this.fmsManualStationList;
|
}
|
|
public void setFmsManualStationList(List<FmsWorkstation> fmsManualStationList) {
|
this.fmsManualStationList = fmsManualStationList;
|
}
|
|
public String getIsAuto() {
|
return this.isAuto;
|
}
|
|
public void setIsAuto(String isAuto) {
|
this.isAuto = isAuto;
|
}
|
}
|