Merge remote-tracking branch 'origin/master'
commit
fe0319f1b2
@ -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;
|
||||
}
|
||||
}
|
@ -0,0 +1,24 @@
|
||||
package com.foreverwin.mesnac.anomaly.service;
|
||||
|
||||
import com.foreverwin.mesnac.anomaly.dto.ScrapDto;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* @Description TODO
|
||||
* @Author zhaojiawei
|
||||
* @Since 2021-07-28
|
||||
*/
|
||||
public interface ProductionScrap {
|
||||
/**
|
||||
* 判断产品条码在质量异常中是否为报废
|
||||
* @param sfc
|
||||
* @return
|
||||
*/
|
||||
boolean jgProductionIsScrap(String site,String sfc);
|
||||
|
||||
/**
|
||||
* 检索
|
||||
*/
|
||||
List<ScrapDto> getScrapDtoBysfc(String site,String sfc);
|
||||
}
|
@ -0,0 +1,31 @@
|
||||
package com.foreverwin.mesnac.meapi.dto;
|
||||
|
||||
import com.foreverwin.mesnac.meapi.model.NcCode;
|
||||
|
||||
/**
|
||||
* @Description TODO
|
||||
* @Author zhaojiawei
|
||||
* @Since 2021-07-29
|
||||
*/
|
||||
public class NcCodeDto extends NcCode {
|
||||
|
||||
private String ngGroup;
|
||||
|
||||
private String ngDescription;
|
||||
|
||||
public String getNgGroup() {
|
||||
return ngGroup;
|
||||
}
|
||||
|
||||
public void setNgGroup(String ngGroup) {
|
||||
this.ngGroup = ngGroup;
|
||||
}
|
||||
|
||||
public String getNgDescription() {
|
||||
return ngDescription;
|
||||
}
|
||||
|
||||
public void setNgDescription(String ngDescription) {
|
||||
this.ngDescription = ngDescription;
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue