yangys
2024-09-04 04c57331cf84c8f606c2838dcb6fe5463fb9b68c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
package com.qianwen.smartman.common.websocket.fms;
 
import java.util.ArrayList;
import java.util.List;
import com.qianwen.core.websocket.message.AbstractJsonWebSocketMessage;
 
public class FmsVisualDataRequestMessage extends AbstractJsonWebSocketMessage {
    private List<String> fmsAreaList = new ArrayList<>();
    private List<String> fmsCarryList = new ArrayList<>();
    private List<String> fmsManualStationList = new ArrayList<>();
    private List<String> fmsWorkstationList = new ArrayList<>();
    private String isAuto;
 
    public FmsVisualDataRequestMessage() {
        super("fmsVisualData");
    }
 
    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;
    }
}