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.
140 lines
2.9 KiB
140 lines
2.9 KiB
package com.gaotao.modules.base.entity;
|
|
|
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
|
import org.apache.poi.ss.formula.functions.T;
|
|
import org.springframework.format.annotation.DateTimeFormat;
|
|
|
|
import javax.xml.crypto.Data;
|
|
import java.math.BigDecimal;
|
|
import java.util.Date;
|
|
|
|
public class RoutingToolData {
|
|
private String site;
|
|
private String partNo;
|
|
private String revNo;
|
|
private Float itemNo;
|
|
private String toolID;
|
|
private String toolDescription;
|
|
private String spec;
|
|
private Float toolQty;
|
|
private String familyID;
|
|
private String familyName;
|
|
private String active;
|
|
private String remark;
|
|
@DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
|
|
private Date createDate;
|
|
private String createdBy;
|
|
|
|
public String getSite() {
|
|
return site;
|
|
}
|
|
|
|
public void setSite(String site) {
|
|
this.site = site;
|
|
}
|
|
|
|
public String getRevNo() {
|
|
return revNo;
|
|
}
|
|
|
|
public void setRevNo(String revNo) {
|
|
this.revNo = revNo;
|
|
}
|
|
|
|
public Float getItemNo() {
|
|
return itemNo;
|
|
}
|
|
|
|
public void setItemNo(Float itemNo) {
|
|
this.itemNo = itemNo;
|
|
}
|
|
|
|
public String getToolID() {
|
|
return toolID;
|
|
}
|
|
|
|
public void setToolID(String toolID) {
|
|
this.toolID = toolID;
|
|
}
|
|
|
|
public String getToolDescription() {
|
|
return toolDescription;
|
|
}
|
|
|
|
public void setToolDescription(String toolDescription) {
|
|
this.toolDescription = toolDescription;
|
|
}
|
|
|
|
public String getSpec() {
|
|
return spec;
|
|
}
|
|
|
|
public void setSpec(String spec) {
|
|
this.spec = spec;
|
|
}
|
|
|
|
public Float getToolQty() {
|
|
return toolQty;
|
|
}
|
|
|
|
public void setToolQty(Float toolQty) {
|
|
this.toolQty = toolQty;
|
|
}
|
|
|
|
public String getFamilyID() {
|
|
return familyID;
|
|
}
|
|
|
|
public void setFamilyID(String familyID) {
|
|
this.familyID = familyID;
|
|
}
|
|
|
|
public String getFamilyName() {
|
|
return familyName;
|
|
}
|
|
|
|
public void setFamilyName(String familyName) {
|
|
this.familyName = familyName;
|
|
}
|
|
|
|
public String getActive() {
|
|
return active;
|
|
}
|
|
|
|
public void setActive(String active) {
|
|
this.active = active;
|
|
}
|
|
|
|
public String getRemark() {
|
|
return remark;
|
|
}
|
|
|
|
public void setRemark(String remark) {
|
|
this.remark = remark;
|
|
}
|
|
|
|
public Date getCreateDate() {
|
|
return createDate;
|
|
}
|
|
|
|
public void setCreateDate(Date createDate) {
|
|
this.createDate = createDate;
|
|
}
|
|
|
|
public String getCreatedBy() {
|
|
return createdBy;
|
|
}
|
|
|
|
public void setCreatedBy(String createdBy) {
|
|
this.createdBy = createdBy;
|
|
}
|
|
|
|
public String getPartNo() {
|
|
return partNo;
|
|
}
|
|
|
|
public void setPartNo(String partNo) {
|
|
this.partNo = partNo;
|
|
}
|
|
}
|