Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
S
sungrowpowernew
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
gavelinfo
sungrowpowernew
Commits
1850b35f
Commit
1850b35f
authored
Nov 03, 2022
by
zhoumaotao
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
代码调整
parent
e5dddf6c
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
12 additions
and
1 deletion
+12
-1
QueryAgvStatusRequest.java
.../main/java/com/gavel/mcs/model/QueryAgvStatusRequest.java
+11
-0
RcmsServiceImpl.java
...main/java/com/gavel/mcs/service/impl/RcmsServiceImpl.java
+1
-1
No files found.
gavel/src/main/java/com/gavel/mcs/model/QueryAgvStatusRequest.java
View file @
1850b35f
...
...
@@ -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
;
}
}
gavel/src/main/java/com/gavel/mcs/service/impl/RcmsServiceImpl.java
View file @
1850b35f
...
...
@@ -384,7 +384,7 @@ public class RcmsServiceImpl extends BaseEditServiceImpl implements RcmsService
url
.
append
(
"queryAgvStatus"
);
QueryAgvStatusRequest
agvStatusRequest
=
new
QueryAgvStatusRequest
();
agvStatusRequest
.
setMap
ShortNam
e
(
mapCode
);
agvStatusRequest
.
setMap
Cod
e
(
mapCode
);
JSONObject
resp
=
execRequest
(
url
.
toString
(),
agvStatusRequest
);
Object
data
=
resp
.
get
(
"data"
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment