四楼提升机状态实体
parent
12c49b6b77
commit
d7648bb560
@ -0,0 +1,76 @@
|
||||
package com.hw.mes.domain;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
/**
|
||||
* (WcsPlcpoint)实体类
|
||||
*
|
||||
* @author makejava
|
||||
* @since 2024-12-03 09:15:24
|
||||
*/
|
||||
public class WcsPlcpoint implements Serializable {
|
||||
private static final long serialVersionUID = 711451321764218741L;
|
||||
|
||||
private Integer id;
|
||||
|
||||
private String name;
|
||||
|
||||
private String station;
|
||||
|
||||
private String address;
|
||||
|
||||
private String value;
|
||||
|
||||
private String type;
|
||||
|
||||
|
||||
public Integer getId() {
|
||||
return id;
|
||||
}
|
||||
|
||||
public void setId(Integer id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public String getName() {
|
||||
return name;
|
||||
}
|
||||
|
||||
public void setName(String name) {
|
||||
this.name = name;
|
||||
}
|
||||
|
||||
public String getStation() {
|
||||
return station;
|
||||
}
|
||||
|
||||
public void setStation(String station) {
|
||||
this.station = station;
|
||||
}
|
||||
|
||||
public String getAddress() {
|
||||
return address;
|
||||
}
|
||||
|
||||
public void setAddress(String address) {
|
||||
this.address = address;
|
||||
}
|
||||
|
||||
public String getValue() {
|
||||
return value;
|
||||
}
|
||||
|
||||
public void setValue(String value) {
|
||||
this.value = value;
|
||||
}
|
||||
|
||||
public String getType() {
|
||||
return type;
|
||||
}
|
||||
|
||||
public void setType(String type) {
|
||||
this.type = type;
|
||||
}
|
||||
|
||||
}
|
||||
|
Loading…
Reference in New Issue