|
|
@ -22,6 +22,8 @@ public class ScrapDto {
|
|
|
|
|
|
|
|
|
|
|
|
private String bom;
|
|
|
|
private String bom;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
private String reason;
|
|
|
|
|
|
|
|
|
|
|
|
public String getSfc() {
|
|
|
|
public String getSfc() {
|
|
|
|
return sfc;
|
|
|
|
return sfc;
|
|
|
|
}
|
|
|
|
}
|
|
|
@ -85,4 +87,12 @@ public class ScrapDto {
|
|
|
|
public void setBom(String bom) {
|
|
|
|
public void setBom(String bom) {
|
|
|
|
this.bom = bom;
|
|
|
|
this.bom = bom;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public String getReason() {
|
|
|
|
|
|
|
|
return reason;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public void setReason(String reason) {
|
|
|
|
|
|
|
|
this.reason = reason;
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|