AutoMonitorItemQueryDTO.java
package com.mycim.valueobject.automonitor.dto;
public class AutoMonitorItemQueryDTO {
private String eqptId;
private String itemType;
private String productId;
private String mainEqptType;
public String getEqptId() {
return eqptId;
}
public void setEqptId(String eqptId) {
this.eqptId = eqptId;
}
public String getItemType() {
return itemType;
}
public void setItemType(String itemType) {
this.itemType = itemType;
}
public String getProductId() {
return productId;
}
public void setProductId(String productId) {
this.productId = productId;
}
public String getMainEqptType() {
return mainEqptType;
}
public void setMainEqptType(String mainEqptType) {
this.mainEqptType = mainEqptType;
}
@Override
public String toString() {
return "AutoMonitorItemQueryDTO [eqptId=" + eqptId + ", itemType=" + itemType + ", productId=" + productId +
", mainEqptType=" + mainEqptType + "]";
}
}