From 92c75ccc8e7db7147b89ae73df333dbeca94d5d5 Mon Sep 17 00:00:00 2001 From: ruanqi Date: Fri, 10 Mar 2023 16:11:01 +0800 Subject: [PATCH] =?UTF-8?q?=E9=A6=96=E6=AC=A1=E6=8F=90=E4=BA=A4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../pms/data/EamWorkOrderItemData.java | 214 ++++++++++++++++++ 1 file changed, 214 insertions(+) create mode 100644 src/main/java/com/xujie/sys/modules/pms/data/EamWorkOrderItemData.java diff --git a/src/main/java/com/xujie/sys/modules/pms/data/EamWorkOrderItemData.java b/src/main/java/com/xujie/sys/modules/pms/data/EamWorkOrderItemData.java new file mode 100644 index 00000000..3ef50329 --- /dev/null +++ b/src/main/java/com/xujie/sys/modules/pms/data/EamWorkOrderItemData.java @@ -0,0 +1,214 @@ +package com.xujie.sys.modules.pms.data; + +import java.util.Date; + +public class EamWorkOrderItemData { + /** + * + */ + private String site; + + /** + * + */ + private String orderNo; + + /** + * + */ + private String itemNo; + + /** + * + */ + private String itemDesc; + + /** + * + */ + private String defaultValue; + + /** + * + */ + private String valueType; + + /** + * + */ + private String valueTypeDb; + + /** + * + */ + private String valueChooseFlag; + + /** + * + */ + private Double maxValue; + + /** + * + */ + private Double minValue; + + /** + * + */ + private String itemRemark; + + /** + * + */ + private String itemType; + + /** + * + */ + private String textValue; + + /** + * + */ + private Double numberValue; + + /** + * + */ + private Date createdDate; + + /** + * + */ + private String createdBy; + + public String getSite() { + return site; + } + + public void setSite(String site) { + this.site = site; + } + + public String getOrderNo() { + return orderNo; + } + + public void setOrderNo(String orderNo) { + this.orderNo = orderNo; + } + + public String getItemNo() { + return itemNo; + } + + public void setItemNo(String itemNo) { + this.itemNo = itemNo; + } + + public String getItemDesc() { + return itemDesc; + } + + public void setItemDesc(String itemDesc) { + this.itemDesc = itemDesc; + } + + public String getDefaultValue() { + return defaultValue; + } + + public void setDefaultValue(String defaultValue) { + this.defaultValue = defaultValue; + } + + public String getValueType() { + return valueType; + } + + public void setValueType(String valueType) { + this.valueType = valueType; + } + + public String getValueTypeDb() { + return valueTypeDb; + } + + public void setValueTypeDb(String valueTypeDb) { + this.valueTypeDb = valueTypeDb; + } + + public String getValueChooseFlag() { + return valueChooseFlag; + } + + public void setValueChooseFlag(String valueChooseFlag) { + this.valueChooseFlag = valueChooseFlag; + } + + public Double getMaxValue() { + return maxValue; + } + + public void setMaxValue(Double maxValue) { + this.maxValue = maxValue; + } + + public Double getMinValue() { + return minValue; + } + + public void setMinValue(Double minValue) { + this.minValue = minValue; + } + + public String getItemRemark() { + return itemRemark; + } + + public void setItemRemark(String itemRemark) { + this.itemRemark = itemRemark; + } + + public String getItemType() { + return itemType; + } + + public void setItemType(String itemType) { + this.itemType = itemType; + } + + public String getTextValue() { + return textValue; + } + + public void setTextValue(String textValue) { + this.textValue = textValue; + } + + public Double getNumberValue() { + return numberValue; + } + + public void setNumberValue(Double numberValue) { + this.numberValue = numberValue; + } + + public Date getCreatedDate() { + return createdDate; + } + + public void setCreatedDate(Date createdDate) { + this.createdDate = createdDate; + } + + public String getCreatedBy() { + return createdBy; + } + + public void setCreatedBy(String createdBy) { + this.createdBy = createdBy; + } +} +