Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
A
access
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
shaochangbin
access
Commits
07d51ef4
Commit
07d51ef4
authored
Dec 22, 2017
by
shaochangbin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
添加了方法注释与变量显示语句
parent
faf4fc9d
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
1 deletion
+5
-1
CompanyController.java
src/com/yx/controller/CompanyController.java
+5
-1
No files found.
src/com/yx/controller/CompanyController.java
View file @
07d51ef4
...
...
@@ -54,13 +54,17 @@ public class CompanyController extends HttpServlet {
return
companyService
.
findCompany
(
companyName
);
}
// 查找全部来访单位
/**
* 查找全部来访单位
* @return
*/
@RequestMapping
(
value
=
"/findCompanyAll"
,
method
=
RequestMethod
.
POST
,
produces
=
"text/html;charset=UTF-8"
)
@ResponseBody
public
String
findCompanyAll
()
{
List
<
Company
>
list
=
companyService
.
findCompanyAll
();
String
result
=
JsonUtils
.
objectToJson
(
list
);
System
.
out
.
println
(
result
);
return
result
;
}
...
...
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