Merge branch 'master' of https://gitee.com/forever_win/mesnac.biz
commit
e7bbf36535
@ -0,0 +1,353 @@
|
||||
package com.foreverwin.mesnac.anomaly.dto;
|
||||
|
||||
import com.foreverwin.mesnac.anomaly.model.AbnormalBillDispose;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* @Description 作异常响应检索用的
|
||||
* @Author zhaojiawei
|
||||
* @Since 2021-07-06
|
||||
*/
|
||||
public class AbnormalBillDisposeDto extends AbnormalBillDispose {
|
||||
|
||||
/**
|
||||
* 异常单
|
||||
*/
|
||||
private String abnormalNo;
|
||||
|
||||
/**
|
||||
* 异常状态
|
||||
*/
|
||||
private String status;
|
||||
|
||||
/**
|
||||
* 物料编号
|
||||
*/
|
||||
private String item;
|
||||
|
||||
/**
|
||||
* 物料描述
|
||||
*/
|
||||
private String itemDescription;
|
||||
|
||||
/**
|
||||
* 异常类型
|
||||
*/
|
||||
private String type;
|
||||
|
||||
/**
|
||||
* 产品条码
|
||||
*/
|
||||
private String sfc;
|
||||
|
||||
/**
|
||||
* 消息类型
|
||||
*/
|
||||
private String messageType;
|
||||
|
||||
/**
|
||||
* 工单
|
||||
*/
|
||||
private String shopOrder;
|
||||
|
||||
/**
|
||||
* 异常车间
|
||||
*/
|
||||
private String workCenter;
|
||||
|
||||
/**
|
||||
* 设备编号
|
||||
*/
|
||||
private String resrce;
|
||||
|
||||
/**
|
||||
* 工作令
|
||||
*/
|
||||
private String workOrder;
|
||||
|
||||
/**
|
||||
* 项目号
|
||||
*/
|
||||
private String itemNumber;
|
||||
|
||||
/**
|
||||
* 产品类别
|
||||
*/
|
||||
private String productCategory;
|
||||
|
||||
/**
|
||||
* 图号
|
||||
*/
|
||||
private String map;
|
||||
|
||||
/**
|
||||
* 不良明细
|
||||
*/
|
||||
private List<String> ncCode;
|
||||
|
||||
/**
|
||||
* 问题描述
|
||||
*/
|
||||
private String pbDescription;
|
||||
|
||||
/**
|
||||
* 不良品数量
|
||||
*/
|
||||
private String ncQty;
|
||||
|
||||
/**
|
||||
* 问题等级
|
||||
*/
|
||||
private String pbGrade;
|
||||
|
||||
/**
|
||||
* 问题提报人
|
||||
*/
|
||||
private String pbUser;
|
||||
|
||||
/**
|
||||
* 问题数量
|
||||
*/
|
||||
private String pbQty;
|
||||
|
||||
/**
|
||||
* 发现环节
|
||||
*/
|
||||
private String discover;
|
||||
|
||||
/**
|
||||
* 检验人员
|
||||
*/
|
||||
private String inspector;
|
||||
|
||||
/**
|
||||
* 实物位置
|
||||
*/
|
||||
private String entityLocation;
|
||||
|
||||
/**
|
||||
* 上报来源
|
||||
*/
|
||||
private String reportFrom;
|
||||
|
||||
/**
|
||||
* 关联来源
|
||||
*/
|
||||
private String objectBo;
|
||||
|
||||
/**
|
||||
* 问题照片
|
||||
*/
|
||||
private String pbPhotoShop;
|
||||
|
||||
public String getAbnormalNo() {
|
||||
return abnormalNo;
|
||||
}
|
||||
|
||||
public void setAbnormalNo(String abnormalNo) {
|
||||
this.abnormalNo = abnormalNo;
|
||||
}
|
||||
|
||||
public String getStatus() {
|
||||
return status;
|
||||
}
|
||||
|
||||
public void setStatus(String status) {
|
||||
this.status = status;
|
||||
}
|
||||
|
||||
public String getItem() {
|
||||
return item;
|
||||
}
|
||||
|
||||
public void setItem(String item) {
|
||||
this.item = item;
|
||||
}
|
||||
|
||||
public String getItemDescription() {
|
||||
return itemDescription;
|
||||
}
|
||||
|
||||
public void setItemDescription(String itemDescription) {
|
||||
this.itemDescription = itemDescription;
|
||||
}
|
||||
|
||||
public String getType() {
|
||||
return type;
|
||||
}
|
||||
|
||||
public void setType(String type) {
|
||||
this.type = type;
|
||||
}
|
||||
|
||||
public String getSfc() {
|
||||
return sfc;
|
||||
}
|
||||
|
||||
public void setSfc(String sfc) {
|
||||
this.sfc = sfc;
|
||||
}
|
||||
|
||||
public String getMessageType() {
|
||||
return messageType;
|
||||
}
|
||||
|
||||
public void setMessageType(String messageType) {
|
||||
this.messageType = messageType;
|
||||
}
|
||||
|
||||
public String getShopOrder() {
|
||||
return shopOrder;
|
||||
}
|
||||
|
||||
public void setShopOrder(String shopOrder) {
|
||||
this.shopOrder = shopOrder;
|
||||
}
|
||||
|
||||
public String getWorkCenter() {
|
||||
return workCenter;
|
||||
}
|
||||
|
||||
public void setWorkCenter(String workCenter) {
|
||||
this.workCenter = workCenter;
|
||||
}
|
||||
|
||||
public String getResrce() {
|
||||
return resrce;
|
||||
}
|
||||
|
||||
public void setResrce(String resrce) {
|
||||
this.resrce = resrce;
|
||||
}
|
||||
|
||||
public String getWorkOrder() {
|
||||
return workOrder;
|
||||
}
|
||||
|
||||
public void setWorkOrder(String workOrder) {
|
||||
this.workOrder = workOrder;
|
||||
}
|
||||
|
||||
public String getItemNumber() {
|
||||
return itemNumber;
|
||||
}
|
||||
|
||||
public void setItemNumber(String itemNumber) {
|
||||
this.itemNumber = itemNumber;
|
||||
}
|
||||
|
||||
public String getProductCategory() {
|
||||
return productCategory;
|
||||
}
|
||||
|
||||
public void setProductCategory(String productCategory) {
|
||||
this.productCategory = productCategory;
|
||||
}
|
||||
|
||||
public String getMap() {
|
||||
return map;
|
||||
}
|
||||
|
||||
public void setMap(String map) {
|
||||
this.map = map;
|
||||
}
|
||||
|
||||
public List<String> getNcCode() {
|
||||
return ncCode;
|
||||
}
|
||||
|
||||
public void setNcCode(List<String> ncCode) {
|
||||
this.ncCode = ncCode;
|
||||
}
|
||||
|
||||
public String getPbDescription() {
|
||||
return pbDescription;
|
||||
}
|
||||
|
||||
public void setPbDescription(String pbDescription) {
|
||||
this.pbDescription = pbDescription;
|
||||
}
|
||||
|
||||
public String getNcQty() {
|
||||
return ncQty;
|
||||
}
|
||||
|
||||
public void setNcQty(String ncQty) {
|
||||
this.ncQty = ncQty;
|
||||
}
|
||||
|
||||
public String getPbGrade() {
|
||||
return pbGrade;
|
||||
}
|
||||
|
||||
public void setPbGrade(String pbGrade) {
|
||||
this.pbGrade = pbGrade;
|
||||
}
|
||||
|
||||
public String getPbUser() {
|
||||
return pbUser;
|
||||
}
|
||||
|
||||
public void setPbUser(String pbUser) {
|
||||
this.pbUser = pbUser;
|
||||
}
|
||||
|
||||
public String getPbQty() {
|
||||
return pbQty;
|
||||
}
|
||||
|
||||
public void setPbQty(String pbQty) {
|
||||
this.pbQty = pbQty;
|
||||
}
|
||||
|
||||
public String getDiscover() {
|
||||
return discover;
|
||||
}
|
||||
|
||||
public void setDiscover(String discover) {
|
||||
this.discover = discover;
|
||||
}
|
||||
|
||||
public String getInspector() {
|
||||
return inspector;
|
||||
}
|
||||
|
||||
public void setInspector(String inspector) {
|
||||
this.inspector = inspector;
|
||||
}
|
||||
|
||||
public String getEntityLocation() {
|
||||
return entityLocation;
|
||||
}
|
||||
|
||||
public void setEntityLocation(String entityLocation) {
|
||||
this.entityLocation = entityLocation;
|
||||
}
|
||||
|
||||
public String getReportFrom() {
|
||||
return reportFrom;
|
||||
}
|
||||
|
||||
public void setReportFrom(String reportFrom) {
|
||||
this.reportFrom = reportFrom;
|
||||
}
|
||||
|
||||
public String getObjectBo() {
|
||||
return objectBo;
|
||||
}
|
||||
|
||||
public void setObjectBo(String objectBo) {
|
||||
this.objectBo = objectBo;
|
||||
}
|
||||
|
||||
public String getPbPhotoShop() {
|
||||
return pbPhotoShop;
|
||||
}
|
||||
|
||||
public void setPbPhotoShop(String pbPhotoShop) {
|
||||
this.pbPhotoShop = pbPhotoShop;
|
||||
}
|
||||
|
||||
|
||||
}
|
Loading…
Reference in New Issue