yangys
2024-02-07 a9816afaf13115c2119fd607ce505b72452f64a9
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
package com.qianwen.mdc.dto.machine;
 
import com.qianwen.mdc.dto.BasePageDTO;
 
/**
 * 车间地图参数对象
 */
public class MachineQueryDTO extends BasePageDTO{
    /**
     * 机床名称
     */
    private String machineName;
    /**
     * ip地址
     */
    private String ip;
    /**
     * 程序传输方式
     */
    private Integer transMode;
    /**
     * 型号
     */
    private String type;
    /**
     * 加工类型
     */
    private String category;
    /**
     * 车间id
     */
    private Long workshopId;
    
    /**
     * 关注标志
     */
    private Integer concernFlag;
    /**
     * 工段id
     */
    private Long sectionId;
    /**
     * 状态, RUN/STOP/IDLE/ALARM,对应车间地图等界面上面的4个状态筛选 
     */
    private String status;
    
    /**
     * 厂房id,必选参数
     */
    private Long plantId;
    
    
    public String getMachineName() {
        return machineName;
    }
    public void setMachineName(String machineName) {
        this.machineName = machineName;
    }
    
    public Long getWorkshopId() {
        return workshopId;
    }
    public void setWorkshopId(Long workshopId) {
        this.workshopId = workshopId;
    }
    public String getStatus() {
        return status;
    }
    public void setStatus(String status) {
        this.status = status;
    }
    public Long getPlantId() {
        return plantId;
    }
    public void setPlantId(Long plantId) {
        this.plantId = plantId;
    }
    public String getIp() {
        return ip;
    }
    public void setIp(String ip) {
        this.ip = ip;
    }
    public Long getSectionId() {
        return sectionId;
    }
    public void setSectionId(Long sectionId) {
        this.sectionId = sectionId;
    }
    public Integer getTransMode() {
        return transMode;
    }
    public void setTransMode(Integer transMode) {
        this.transMode = transMode;
    }
    public String getType() {
        return type;
    }
    public void setType(String type) {
        this.type = type;
    }
    public String getCategory() {
        return category;
    }
    public void setCategory(String category) {
        this.category = category;
    }
    public Integer getConcernFlag() {
        return concernFlag;
    }
    public void setConcernFlag(Integer concernFlag) {
        this.concernFlag = concernFlag;
    }
    
    
}