|
|
|
@ -3,6 +3,7 @@ package com.gaotao.modules.rollNoReview.data; |
|
|
|
import com.fasterxml.jackson.annotation.JsonFormat; |
|
|
|
import org.springframework.format.annotation.DateTimeFormat; |
|
|
|
|
|
|
|
import java.math.BigDecimal; |
|
|
|
import java.sql.Timestamp; |
|
|
|
import java.util.Date; |
|
|
|
|
|
|
|
@ -62,6 +63,60 @@ public class SFDCRollsOutData { |
|
|
|
private String partNo; |
|
|
|
private String partDesc; |
|
|
|
private String spec; |
|
|
|
private Integer goodQty; |
|
|
|
private Integer surfaceLossQty; |
|
|
|
private Integer poorPerformanceQty; |
|
|
|
private Integer defectQty; |
|
|
|
private Integer totalQty; |
|
|
|
private BigDecimal yieldRate; |
|
|
|
|
|
|
|
public Integer getGoodQty() { |
|
|
|
return goodQty; |
|
|
|
} |
|
|
|
|
|
|
|
public void setGoodQty(Integer goodQty) { |
|
|
|
this.goodQty = goodQty; |
|
|
|
} |
|
|
|
|
|
|
|
public Integer getSurfaceLossQty() { |
|
|
|
return surfaceLossQty; |
|
|
|
} |
|
|
|
|
|
|
|
public void setSurfaceLossQty(Integer surfaceLossQty) { |
|
|
|
this.surfaceLossQty = surfaceLossQty; |
|
|
|
} |
|
|
|
|
|
|
|
public Integer getPoorPerformanceQty() { |
|
|
|
return poorPerformanceQty; |
|
|
|
} |
|
|
|
|
|
|
|
public void setPoorPerformanceQty(Integer poorPerformanceQty) { |
|
|
|
this.poorPerformanceQty = poorPerformanceQty; |
|
|
|
} |
|
|
|
|
|
|
|
public Integer getDefectQty() { |
|
|
|
return defectQty; |
|
|
|
} |
|
|
|
|
|
|
|
public void setDefectQty(Integer defectQty) { |
|
|
|
this.defectQty = defectQty; |
|
|
|
} |
|
|
|
|
|
|
|
public Integer getTotalQty() { |
|
|
|
return totalQty; |
|
|
|
} |
|
|
|
|
|
|
|
public void setTotalQty(Integer totalQty) { |
|
|
|
this.totalQty = totalQty; |
|
|
|
} |
|
|
|
|
|
|
|
public BigDecimal getYieldRate() { |
|
|
|
return yieldRate; |
|
|
|
} |
|
|
|
|
|
|
|
public void setYieldRate(BigDecimal yieldRate) { |
|
|
|
this.yieldRate = yieldRate; |
|
|
|
} |
|
|
|
|
|
|
|
public String getPartNo() { |
|
|
|
return partNo; |
|
|
|
|