md
This commit is contained in:
parent
01f4319092
commit
290bfb9a3a
@ -1,8 +1,10 @@
|
||||
package com.xdadan.erp.emis.domain.vo.scan;
|
||||
|
||||
import com.alibaba.fastjson.JSONObject;
|
||||
import lombok.Data;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.util.HashMap;
|
||||
import java.util.List;
|
||||
import java.util.Map;
|
||||
|
||||
@ -30,8 +32,23 @@ import java.util.Map;
|
||||
public class ScanResultItem implements Serializable {
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
String billCode;
|
||||
String result;
|
||||
String message;
|
||||
private String billCode;
|
||||
private String result;
|
||||
private String message;
|
||||
|
||||
private Map<String,Object> data;
|
||||
|
||||
public Map<String, Object> getData() {
|
||||
if (this.data == null) {
|
||||
this.data = new HashMap();
|
||||
}
|
||||
|
||||
return this.data;
|
||||
}
|
||||
|
||||
public void setData(Map<String, Object> data) {
|
||||
this.data = data;
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
|
||||
@ -202,7 +202,8 @@ public class EmisTmsScanRecordServiceImpl extends EmisBaseService implements IEm
|
||||
continue;
|
||||
}
|
||||
|
||||
|
||||
scanResultItem.getData().put("billWeight",emisWaybill.getBillWeight());
|
||||
scanResultItem.getData().put("parcelQty",emisWaybill.getParcelQty());
|
||||
|
||||
EmisTmsScanRecord emisTmsScanRecord=new EmisTmsScanRecord();
|
||||
|
||||
@ -223,6 +224,7 @@ public class EmisTmsScanRecordServiceImpl extends EmisBaseService implements IEm
|
||||
|
||||
if(ScanType.GOT.opCode.equals(scanType)){
|
||||
setScanGot(emisTmsScanRecord,scanDataItem);
|
||||
scanResultItem.getData().putAll(scanDataItem);
|
||||
}
|
||||
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user