package com.qianwen.smartman.common.websocket.fms;
|
|
import java.util.ArrayList;
|
import java.util.List;
|
import com.qianwen.core.websocket.message.AbstractJsonWebSocketMessage;
|
|
/* loaded from: blade-api.jar:BOOT-INF/classes/org/springblade/common/websocket/fms/FmsVisualDataRequestMessage.class */
|
public class FmsVisualDataRequestMessage extends AbstractJsonWebSocketMessage {
|
private List<String> fmsAreaList;
|
private List<String> fmsCarryList;
|
private List<String> fmsManualStationList;
|
private List<String> fmsWorkstationList;
|
private String isAuto;
|
|
public FmsVisualDataRequestMessage() {
|
super("fmsVisualData");
|
this.fmsAreaList = new ArrayList();
|
this.fmsCarryList = new ArrayList();
|
this.fmsManualStationList = new ArrayList();
|
this.fmsWorkstationList = new ArrayList();
|
}
|
|
public List<String> getFmsAreaList() {
|
return this.fmsAreaList;
|
}
|
|
public void setFmsAreaList(List<String> fmsAreaList) {
|
this.fmsAreaList = fmsAreaList;
|
}
|
|
public List<String> getFmsCarryList() {
|
return this.fmsCarryList;
|
}
|
|
public void setFmsCarryList(List<String> fmsCarryList) {
|
this.fmsCarryList = fmsCarryList;
|
}
|
|
public List<String> getFmsManualStationList() {
|
return this.fmsManualStationList;
|
}
|
|
public void setFmsManualStationList(List<String> fmsManualStationList) {
|
this.fmsManualStationList = fmsManualStationList;
|
}
|
|
public List<String> getFmsWorkstationList() {
|
return this.fmsWorkstationList;
|
}
|
|
public void setFmsWorkstationList(List<String> fmsWorkstationList) {
|
this.fmsWorkstationList = fmsWorkstationList;
|
}
|
|
public String getIsAuto() {
|
return this.isAuto;
|
}
|
|
public void setIsAuto(String isAuto) {
|
this.isAuto = isAuto;
|
}
|
}
|