|
|
|
@ -4,6 +4,7 @@ import com.fasterxml.jackson.annotation.JsonFormat; |
|
|
|
import com.heai.common.utils.QueryPage; |
|
|
|
import org.springframework.format.annotation.DateTimeFormat; |
|
|
|
|
|
|
|
import java.math.BigDecimal; |
|
|
|
import java.util.Date; |
|
|
|
|
|
|
|
public class QcPartAttributeData extends QueryPage { |
|
|
|
@ -129,11 +130,11 @@ public class QcPartAttributeData extends QueryPage { |
|
|
|
// 最小值 |
|
|
|
private String minValue; |
|
|
|
// 首次IPQC巡检时间 |
|
|
|
private String firstIPQCPatrolTime; |
|
|
|
private BigDecimal firstIPQCPatrolTime; |
|
|
|
// 下次IPQC巡检时间 |
|
|
|
private String lastIPQCPatrolTime; |
|
|
|
private BigDecimal lastIPQCPatrolTime; |
|
|
|
// 累计巡检时间 |
|
|
|
private String cycleIPQCPatrolTime; |
|
|
|
private BigDecimal cycleIPQCPatrolTime; |
|
|
|
|
|
|
|
public String getDefaultValue() { |
|
|
|
return defaultValue; |
|
|
|
@ -167,27 +168,27 @@ public class QcPartAttributeData extends QueryPage { |
|
|
|
this.minValue = minValue; |
|
|
|
} |
|
|
|
|
|
|
|
public String getFirstIPQCPatrolTime() { |
|
|
|
public BigDecimal getFirstIPQCPatrolTime() { |
|
|
|
return firstIPQCPatrolTime; |
|
|
|
} |
|
|
|
|
|
|
|
public void setFirstIPQCPatrolTime(String firstIPQCPatrolTime) { |
|
|
|
public void setFirstIPQCPatrolTime(BigDecimal firstIPQCPatrolTime) { |
|
|
|
this.firstIPQCPatrolTime = firstIPQCPatrolTime; |
|
|
|
} |
|
|
|
|
|
|
|
public String getLastIPQCPatrolTime() { |
|
|
|
public BigDecimal getLastIPQCPatrolTime() { |
|
|
|
return lastIPQCPatrolTime; |
|
|
|
} |
|
|
|
|
|
|
|
public void setLastIPQCPatrolTime(String lastIPQCPatrolTime) { |
|
|
|
public void setLastIPQCPatrolTime(BigDecimal lastIPQCPatrolTime) { |
|
|
|
this.lastIPQCPatrolTime = lastIPQCPatrolTime; |
|
|
|
} |
|
|
|
|
|
|
|
public String getCycleIPQCPatrolTime() { |
|
|
|
public BigDecimal getCycleIPQCPatrolTime() { |
|
|
|
return cycleIPQCPatrolTime; |
|
|
|
} |
|
|
|
|
|
|
|
public void setCycleIPQCPatrolTime(String cycleIPQCPatrolTime) { |
|
|
|
public void setCycleIPQCPatrolTime(BigDecimal cycleIPQCPatrolTime) { |
|
|
|
this.cycleIPQCPatrolTime = cycleIPQCPatrolTime; |
|
|
|
} |
|
|
|
|
|
|
|
|