| | |
| | | /** ID */ |
| | | private Long id; |
| | | |
| | | @Excel(name = "是否报工") |
| | | private String sfResult; |
| | | |
| | | @Excel(name = "报工结果代码(S成功,F失败)") |
| | | private String resultCode; |
| | | |
| | | @Excel(name = "报工信息结果") |
| | | private String resultText; |
| | | |
| | | @Excel(name = "工站编号") |
| | | private String stationCode; |
| | | |
| | | |
| | | |
| | | @Excel(name = "产品序列号") |
| | | private String productNum; |
| | | |
| | | @Excel(name = "工厂编号") |
| | | private String siteCode; |
| | | |
| | | /** 生产工单号 */ |
| | | @Excel(name = "生产工单号") |
| | | private String workOrderNo; |
| | |
| | | private Long[] idNums; |
| | | |
| | | private String flag; |
| | | public String getSfResult() { |
| | | return sfResult; |
| | | } |
| | | |
| | | public void setSfResult(String sfResult) { |
| | | this.sfResult = sfResult; |
| | | } |
| | | |
| | | public String getResultCode() { |
| | | return resultCode; |
| | | } |
| | | |
| | | public void setResultCode(String resultCode) { |
| | | this.resultCode = resultCode; |
| | | } |
| | | |
| | | public String getResultText() { |
| | | return resultText; |
| | | } |
| | | |
| | | public void setResultText(String resultText) { |
| | | this.resultText = resultText; |
| | | } |
| | | |
| | | public String getStationCode() { |
| | | return stationCode; |
| | | } |
| | | |
| | | public void setStationCode(String stationCode) { |
| | | this.stationCode = stationCode; |
| | | } |
| | | |
| | | public String getProductNum() { |
| | | return productNum; |
| | | } |
| | | |
| | | public void setProductNum(String productNum) { |
| | | this.productNum = productNum; |
| | | } |
| | | public String getSiteCode() {return siteCode;} |
| | | public void setSiteCode(String siteCode) {this.siteCode = siteCode;} |
| | | public String getFlag() { |
| | | return flag; |
| | | } |
| | |
| | | .append("spareField2", getSpareField2()) |
| | | .append("spareField3", getSpareField3()) |
| | | .append("spareField4", getSpareField4()) |
| | | .append("siteCode", getSiteCode()) |
| | | .append("productNum", getProductNum()) |
| | | .append("stationCode", getStationCode()) |
| | | .append("resultCode", getResultCode()) |
| | | .append("resultText", getResultText()) |
| | | .append("sfResult", getSfResult()) |
| | | .toString(); |
| | | } |
| | | } |