Commit 1850b35f authored by zhoumaotao's avatar zhoumaotao

代码调整

parent e5dddf6c
......@@ -5,6 +5,9 @@ public class QueryAgvStatusRequest extends RcmsDpsRequest {
// 32 否 地图简称,与地码类型一致
private String mapShortName;
// 32 地图编码
private String mapCode;
public String getMapShortName() {
return mapShortName;
}
......@@ -12,4 +15,12 @@ public class QueryAgvStatusRequest extends RcmsDpsRequest {
public void setMapShortName(String mapShortName) {
this.mapShortName = mapShortName;
}
public String getMapCode() {
return mapCode;
}
public void setMapCode(String mapCode) {
this.mapCode = mapCode;
}
}
......@@ -384,7 +384,7 @@ public class RcmsServiceImpl extends BaseEditServiceImpl implements RcmsService
url.append("queryAgvStatus");
QueryAgvStatusRequest agvStatusRequest = new QueryAgvStatusRequest();
agvStatusRequest.setMapShortName(mapCode);
agvStatusRequest.setMapCode(mapCode);
JSONObject resp = execRequest(url.toString(), agvStatusRequest);
Object data = resp.get("data");
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment