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.
154 lines
3.8 KiB
154 lines
3.8 KiB
package com.spring.modules.Tooling.entity;
|
|
|
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
|
import org.springframework.format.annotation.DateTimeFormat;
|
|
|
|
import java.util.Date;
|
|
|
|
public class IfsToolInstance extends IfsTool {
|
|
private String toolInstance;
|
|
private String description;
|
|
@DateTimeFormat(pattern = "yyyy-MM-dd")
|
|
@JsonFormat(pattern = "yyyy-MM-dd")
|
|
private Date lastCalibrationDate;
|
|
@DateTimeFormat(pattern = "yyyy-MM-dd")
|
|
@JsonFormat(pattern = "yyyy-MM-dd")
|
|
private Date 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 Date createDate;
|
|
|
|
public IfsToolInstance() {
|
|
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;
|
|
}
|
|
|
|
public Date getLastCalibrationDate() {
|
|
return lastCalibrationDate;
|
|
}
|
|
|
|
public void setLastCalibrationDate(Date lastCalibrationDate) {
|
|
this.lastCalibrationDate = lastCalibrationDate;
|
|
}
|
|
|
|
public Date getNextCalibrationDate() {
|
|
return nextCalibrationDate;
|
|
}
|
|
|
|
public void setNextCalibrationDate(Date 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 Date getCreateDate() {
|
|
return createDate;
|
|
}
|
|
|
|
public void setCreateDate(Date createDate) {
|
|
this.createDate = createDate;
|
|
}
|
|
}
|