From d7648bb560c1c17295c6ad87f883f36ba3e82927 Mon Sep 17 00:00:00 2001 From: "maxw@mesnac.com" Date: Wed, 4 Dec 2024 10:41:33 +0800 Subject: [PATCH] =?UTF-8?q?=E5=9B=9B=E6=A5=BC=E6=8F=90=E5=8D=87=E6=9C=BA?= =?UTF-8?q?=E7=8A=B6=E6=80=81=E5=AE=9E=E4=BD=93?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../java/com/hw/mes/domain/WcsPlcpoint.java | 76 +++++++++++++++++++ 1 file changed, 76 insertions(+) create mode 100644 hw-modules/hw-mes/src/main/java/com/hw/mes/domain/WcsPlcpoint.java 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; + } + +} +