1 changed files with 214 additions and 0 deletions
@ -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; |
||||
|
} |
||||
|
} |
||||
|
|
||||
Write
Preview
Loading…
Cancel
Save
Reference in new issue