You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
182 lines
3.9 KiB
182 lines
3.9 KiB
package com.spring.modules.Tooling.entity;
|
|
|
|
import com.spring.modules.Tooling.data.PageData;
|
|
|
|
import java.util.Date;
|
|
|
|
public class IfsTool extends PageData {
|
|
private int id;
|
|
private String site;
|
|
private String toolId;
|
|
private String toolDesc;
|
|
private String toolType;
|
|
private String calendarId;
|
|
private String schedCapacity;
|
|
private String alternateToolId;
|
|
private String calibrationControl;
|
|
private String calibrationTime;
|
|
private String enabledForControlPlanDb;
|
|
private String lastUsed;// 备注
|
|
private String noteText;// 备注
|
|
private String ifsRowId;
|
|
private String ifsRowVersion;
|
|
private Date createDate;//
|
|
private String username;
|
|
private String state;
|
|
private String propertyNo;
|
|
|
|
public IfsTool() {
|
|
}
|
|
|
|
public int getId() {
|
|
return id;
|
|
}
|
|
|
|
public void setId(int id) {
|
|
this.id = id;
|
|
}
|
|
|
|
public String getSite() {
|
|
return site;
|
|
}
|
|
|
|
public void setSite(String site) {
|
|
this.site = site;
|
|
}
|
|
|
|
public String getToolId() {
|
|
return toolId;
|
|
}
|
|
|
|
public void setToolId(String toolId) {
|
|
this.toolId = toolId;
|
|
}
|
|
|
|
public String getToolDesc() {
|
|
return toolDesc;
|
|
}
|
|
|
|
public void setToolDesc(String toolDesc) {
|
|
this.toolDesc = toolDesc;
|
|
}
|
|
|
|
public String getToolType() {
|
|
return toolType;
|
|
}
|
|
|
|
public void setToolType(String toolType) {
|
|
this.toolType = toolType;
|
|
}
|
|
|
|
public String getCalendarId() {
|
|
return calendarId;
|
|
}
|
|
|
|
public void setCalendarId(String calendarId) {
|
|
this.calendarId = calendarId;
|
|
}
|
|
|
|
public String getSchedCapacity() {
|
|
return schedCapacity;
|
|
}
|
|
|
|
public void setSchedCapacity(String schedCapacity) {
|
|
this.schedCapacity = schedCapacity;
|
|
}
|
|
|
|
public String getAlternateToolId() {
|
|
return alternateToolId;
|
|
}
|
|
|
|
public void setAlternateToolId(String alternateToolId) {
|
|
this.alternateToolId = alternateToolId;
|
|
}
|
|
|
|
public String getCalibrationControl() {
|
|
return calibrationControl;
|
|
}
|
|
|
|
public void setCalibrationControl(String calibrationControl) {
|
|
this.calibrationControl = calibrationControl;
|
|
}
|
|
|
|
public String getCalibrationTime() {
|
|
return calibrationTime;
|
|
}
|
|
|
|
public void setCalibrationTime(String calibrationTime) {
|
|
this.calibrationTime = calibrationTime;
|
|
}
|
|
|
|
public String getEnabledForControlPlanDb() {
|
|
return enabledForControlPlanDb;
|
|
}
|
|
|
|
public void setEnabledForControlPlanDb(String enabledForControlPlanDb) {
|
|
this.enabledForControlPlanDb = enabledForControlPlanDb;
|
|
}
|
|
|
|
public String getLastUsed() {
|
|
return lastUsed;
|
|
}
|
|
|
|
public void setLastUsed(String lastUsed) {
|
|
this.lastUsed = lastUsed;
|
|
}
|
|
|
|
public String getNoteText() {
|
|
return noteText;
|
|
}
|
|
|
|
public void setNoteText(String noteText) {
|
|
this.noteText = noteText;
|
|
}
|
|
|
|
public String getIfsRowId() {
|
|
return ifsRowId;
|
|
}
|
|
|
|
public void setIfsRowId(String ifsRowId) {
|
|
this.ifsRowId = ifsRowId;
|
|
}
|
|
|
|
public String getIfsRowVersion() {
|
|
return ifsRowVersion;
|
|
}
|
|
|
|
public void setIfsRowVersion(String ifsRowVersion) {
|
|
this.ifsRowVersion = ifsRowVersion;
|
|
}
|
|
|
|
public Date getCreateDate() {
|
|
return createDate;
|
|
}
|
|
|
|
public void setCreateDate(Date createDate) {
|
|
this.createDate = createDate;
|
|
}
|
|
|
|
public String getUsername() {
|
|
return username;
|
|
}
|
|
|
|
public void setUsername(String username) {
|
|
this.username = username;
|
|
}
|
|
|
|
public String getState() {
|
|
return state;
|
|
}
|
|
|
|
public void setState(String state) {
|
|
this.state = state;
|
|
}
|
|
|
|
public String getPropertyNo() {
|
|
return propertyNo;
|
|
}
|
|
|
|
public void setPropertyNo(String propertyNo) {
|
|
this.propertyNo = propertyNo;
|
|
}
|
|
}
|