Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
J
jiwei-api
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
马天浩
jiwei-api
Commits
bd96fd3e
Commit
bd96fd3e
authored
Sep 23, 2020
by
matianhao
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[水利局接口] <update> 新增参数:村社名称 village
parent
cd9eee15
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
0 deletions
+8
-0
SLJController.java
.../java/com/mth/requestsecret/controller/SLJController.java
+4
-0
SljBaseParamVO.java
...a/com/mth/requestsecret/vo/shuilijuvo/SljBaseParamVO.java
+4
-0
No files found.
src/main/java/com/mth/requestsecret/controller/SLJController.java
View file @
bd96fd3e
...
...
@@ -57,6 +57,7 @@ public class SLJController {
String
url
=
"http://122.224.98.154:82/api/Project/GetProjectCbk"
+
"?format=json"
+
"&townName={townName}"
+
"&village={village}"
+
"&projectName={projectName}"
+
"&projectTypeName={projectTypeName}"
+
"&isOrder={isOrder}"
+
...
...
@@ -68,6 +69,7 @@ public class SLJController {
Map
<
String
,
Object
>
map
=
Maps
.
newHashMap
();
map
.
put
(
"format"
,
"json"
);
map
.
put
(
"townName"
,
param
.
getTownName
());
map
.
put
(
"village"
,
param
.
getVillage
());
map
.
put
(
"projectName"
,
param
.
getProjectName
());
map
.
put
(
"projectTypeName"
,
param
.
getProjectTypeName
());
map
.
put
(
"year"
,
param
.
getYear
());
...
...
@@ -91,6 +93,7 @@ public class SLJController {
String
url
=
"http://122.224.98.154:82/api/PlanTask/GetPlanTaskList"
+
"?format=json"
+
"&townName={townName}"
+
"&village={village}"
+
"&projectName={projectName}"
+
"&projectTypeName={projectTypeName}"
+
"&unit={unit}"
+
...
...
@@ -102,6 +105,7 @@ public class SLJController {
Map
<
String
,
Object
>
map
=
Maps
.
newHashMap
();
map
.
put
(
"format"
,
"json"
);
map
.
put
(
"townName"
,
param
.
getTownName
());
map
.
put
(
"village"
,
param
.
getVillage
());
map
.
put
(
"projectName"
,
param
.
getProjectName
());
map
.
put
(
"projectTypeName"
,
param
.
getProjectTypeName
());
map
.
put
(
"year"
,
param
.
getYear
());
...
...
src/main/java/com/mth/requestsecret/vo/shuilijuvo/SljBaseParamVO.java
View file @
bd96fd3e
...
...
@@ -15,6 +15,10 @@ public class SljBaseParamVO {
* 乡镇名称
*/
private
String
townName
;
/**
* 村社名称
*/
private
String
village
;
/**
* 项目名称
*/
...
...
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