Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
Y
YX_IDENT_beijing_auxiliary_YD
Project
Project
Details
Activity
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
zhangyusheng
YX_IDENT_beijing_auxiliary_YD
Commits
473d9a87
Commit
473d9a87
authored
Mar 06, 2019
by
dahai
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修改查询XML制证信息
parent
5d1704e0
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
7 deletions
+3
-7
ReadExcelApi.java
src/main/java/com/yxproject/start/api/ReadExcelApi.java
+0
-2
TaskListApi.java
src/main/java/com/yxproject/start/api/TaskListApi.java
+3
-5
No files found.
src/main/java/com/yxproject/start/api/ReadExcelApi.java
View file @
473d9a87
...
...
@@ -137,8 +137,6 @@ public class ReadExcelApi {
personPostEntity
.
setLatticeMouthInformation
((
String
)
list2
.
get
(
19
));
personPostEntity
.
setNatureOfTheInternal
((
String
)
list2
.
get
(
20
));
personPostEntity
.
setNatureOfTheInformation
((
String
)
list2
.
get
(
21
));
System
.
out
.
println
(
list2
.
get
(
23
).
toString
());
System
.
out
.
println
(
list2
.
get
(
23
).
toString
().
length
());
personPostEntity
.
setFirstWhite
(
list2
.
get
(
22
).
toString
().
substring
(
5
,
24
)
);
personPostEntity
.
setFileId
(
fileNameDicEntity
.
getFileId
());
entityList
.
add
(
personPostEntity
);
...
...
src/main/java/com/yxproject/start/api/TaskListApi.java
View file @
473d9a87
...
...
@@ -90,11 +90,9 @@ public class TaskListApi {
* @return
*/
@RequestMapping
(
"queryByCountyAtACCU"
)
public
String
queryByCountyAtACCU
(
@RequestParam
(
"state"
)
String
state
,
HttpServletResponse
resp
){
YXJSONResponse
yxjsonResponse
=
new
YXJSONResponse
();
resp
.
setCharacterEncoding
(
"UTF-8"
);
yxjsonResponse
.
outPutSuccess
(
taskListService
.
selectByCountyAtACCU
(
state
));
return
yxjsonResponse
.
toJSONString
();
public
List
<
Object
>
queryByCountyAtACCU
(
@RequestParam
(
"state"
)
String
state
,
HttpServletResponse
resp
){
List
<
Object
>
objects
=
taskListService
.
selectByCountyAtACCU
(
state
);
return
objects
;
}
}
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