生产报废
parent
90cc22108b
commit
86869e0ec4
@ -0,0 +1,89 @@
|
|||||||
|
package com.foreverwin.mesnac.anomaly.dto;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @Description TODO
|
||||||
|
* @Author zhaojiawei
|
||||||
|
* @Since 2021-07-28
|
||||||
|
*/
|
||||||
|
public class ScrapDto {
|
||||||
|
|
||||||
|
private String sfc;
|
||||||
|
|
||||||
|
private String status;
|
||||||
|
|
||||||
|
private String operation;
|
||||||
|
|
||||||
|
private String resrce;
|
||||||
|
|
||||||
|
private String shopOrder;
|
||||||
|
|
||||||
|
private String router;
|
||||||
|
|
||||||
|
private String item;
|
||||||
|
|
||||||
|
private String bom;
|
||||||
|
|
||||||
|
public String getSfc() {
|
||||||
|
return sfc;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setSfc(String sfc) {
|
||||||
|
this.sfc = sfc;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getStatus() {
|
||||||
|
return status;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setStatus(String status) {
|
||||||
|
this.status = status;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getOperation() {
|
||||||
|
return operation;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setOperation(String operation) {
|
||||||
|
this.operation = operation;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getResrce() {
|
||||||
|
return resrce;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setResrce(String resrce) {
|
||||||
|
this.resrce = resrce;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getShopOrder() {
|
||||||
|
return shopOrder;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setShopOrder(String shopOrder) {
|
||||||
|
this.shopOrder = shopOrder;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getRouter() {
|
||||||
|
return router;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setRouter(String router) {
|
||||||
|
this.router = router;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getItem() {
|
||||||
|
return item;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setItem(String item) {
|
||||||
|
this.item = item;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getBom() {
|
||||||
|
return bom;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setBom(String bom) {
|
||||||
|
this.bom = bom;
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue