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.
202 lines
4.9 KiB
202 lines
4.9 KiB
package com.spring.modules.Tooling.data;
|
|
|
|
public class IfsToolInstanceData extends IfsToolData {
|
|
private String toolInstance;
|
|
private String description;
|
|
private String desc;
|
|
private String lastCalibrationDate;
|
|
private String nextCalibrationDate;//
|
|
private String objectId;
|
|
private String normalWorkCenterNo;
|
|
private String normalProductionLine;
|
|
private String noteText;// 备注
|
|
|
|
private String toolDiscrimination;
|
|
private String toolLinearity;
|
|
private String toolRepeatability;
|
|
private String toolBias;
|
|
private String toolStability;
|
|
private String toolReproducibility;
|
|
private String toolResourceId;
|
|
private String toolResourceDesc;
|
|
private String lastUsageReport;
|
|
private String normalWorkCenterDesc;
|
|
private String state;
|
|
private String normalProductionLineDesc;
|
|
|
|
public IfsToolInstanceData() {
|
|
super();
|
|
// TODO Auto-generated constructor stub
|
|
}
|
|
|
|
public String getToolInstance() {
|
|
return toolInstance;
|
|
}
|
|
|
|
public void setToolInstance(String toolInstance) {
|
|
this.toolInstance = toolInstance;
|
|
}
|
|
|
|
public String getDescription() {
|
|
return description;
|
|
}
|
|
|
|
public void setDescription(String description) {
|
|
this.description = description;
|
|
this.desc = description;
|
|
}
|
|
|
|
public String getDesc() {
|
|
return desc;
|
|
}
|
|
|
|
public void setDesc(String desc) {
|
|
this.desc = desc;
|
|
}
|
|
|
|
public String getNormalWorkCenterDesc() {
|
|
return normalWorkCenterDesc;
|
|
}
|
|
|
|
public void setNormalWorkCenterDesc(String normalWorkCenterDesc) {
|
|
this.normalWorkCenterDesc = normalWorkCenterDesc;
|
|
}
|
|
|
|
@Override
|
|
public String getState() {
|
|
return state;
|
|
}
|
|
|
|
@Override
|
|
public void setState(String state) {
|
|
this.state = state;
|
|
}
|
|
|
|
public String getLastCalibrationDate() {
|
|
return lastCalibrationDate;
|
|
}
|
|
|
|
public void setLastCalibrationDate(String lastCalibrationDate) {
|
|
this.lastCalibrationDate = lastCalibrationDate;
|
|
}
|
|
|
|
public String getNextCalibrationDate() {
|
|
return nextCalibrationDate;
|
|
}
|
|
|
|
public void setNextCalibrationDate(String nextCalibrationDate) {
|
|
this.nextCalibrationDate = nextCalibrationDate;
|
|
}
|
|
|
|
public String getObjectId() {
|
|
return objectId;
|
|
}
|
|
|
|
public void setObjectId(String objectId) {
|
|
this.objectId = objectId;
|
|
}
|
|
|
|
public String getNormalWorkCenterNo() {
|
|
return normalWorkCenterNo;
|
|
}
|
|
|
|
public void setNormalWorkCenterNo(String normalWorkCenterNo) {
|
|
this.normalWorkCenterNo = normalWorkCenterNo;
|
|
}
|
|
|
|
public String getNormalProductionLine() {
|
|
return normalProductionLine;
|
|
}
|
|
|
|
public void setNormalProductionLine(String normalProductionLine) {
|
|
this.normalProductionLine = normalProductionLine;
|
|
}
|
|
|
|
public String getNoteText() {
|
|
return noteText;
|
|
}
|
|
|
|
public void setNoteText(String noteText) {
|
|
this.noteText = noteText;
|
|
}
|
|
|
|
public String getToolDiscrimination() {
|
|
return toolDiscrimination;
|
|
}
|
|
|
|
public void setToolDiscrimination(String toolDiscrimination) {
|
|
this.toolDiscrimination = toolDiscrimination;
|
|
}
|
|
|
|
public String getToolLinearity() {
|
|
return toolLinearity;
|
|
}
|
|
|
|
public void setToolLinearity(String toolLinearity) {
|
|
this.toolLinearity = toolLinearity;
|
|
}
|
|
|
|
public String getToolRepeatability() {
|
|
return toolRepeatability;
|
|
}
|
|
|
|
public void setToolRepeatability(String toolRepeatability) {
|
|
this.toolRepeatability = toolRepeatability;
|
|
}
|
|
|
|
public String getToolBias() {
|
|
return toolBias;
|
|
}
|
|
|
|
public void setToolBias(String toolBias) {
|
|
this.toolBias = toolBias;
|
|
}
|
|
|
|
public String getToolStability() {
|
|
return toolStability;
|
|
}
|
|
|
|
public void setToolStability(String toolStability) {
|
|
this.toolStability = toolStability;
|
|
}
|
|
|
|
public String getToolReproducibility() {
|
|
return toolReproducibility;
|
|
}
|
|
|
|
public void setToolReproducibility(String toolReproducibility) {
|
|
this.toolReproducibility = toolReproducibility;
|
|
}
|
|
|
|
public String getToolResourceId() {
|
|
return toolResourceId;
|
|
}
|
|
|
|
public void setToolResourceId(String toolResourceId) {
|
|
this.toolResourceId = toolResourceId;
|
|
}
|
|
|
|
public String getToolResourceDesc() {
|
|
return toolResourceDesc;
|
|
}
|
|
|
|
public void setToolResourceDesc(String toolResourceDesc) {
|
|
this.toolResourceDesc = toolResourceDesc;
|
|
}
|
|
|
|
public String getLastUsageReport() {
|
|
return lastUsageReport;
|
|
}
|
|
|
|
public void setLastUsageReport(String lastUsageReport) {
|
|
this.lastUsageReport = lastUsageReport;
|
|
}
|
|
|
|
public String getNormalProductionLineDesc() {
|
|
return normalProductionLineDesc;
|
|
}
|
|
|
|
public void setNormalProductionLineDesc(String normalProductionLineDesc) {
|
|
this.normalProductionLineDesc = normalProductionLineDesc;
|
|
}
|
|
}
|