diff --git a/hw-modules/hw-mes/src/main/java/com/hw/mes/domain/WcsPlcpoint.java b/hw-modules/hw-mes/src/main/java/com/hw/mes/domain/WcsPlcpoint.java new file mode 100644 index 00000000..7d1dc86d --- /dev/null +++ b/hw-modules/hw-mes/src/main/java/com/hw/mes/domain/WcsPlcpoint.java @@ -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; + } + +} +