Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
Y
YX_IDENT_REFACTORING
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_REFACTORING
Commits
16c34d84
Commit
16c34d84
authored
Nov 27, 2018
by
xuwang
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
完成通过视图查询卡基统计报表
查询在受理库任务单详情
parent
81654509
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
42 additions
and
0 deletions
+42
-0
YingxinApi.java
src/main/java/com/yxproject/start/api/YingxinApi.java
+42
-0
No files found.
src/main/java/com/yxproject/start/api/YingxinApi.java
0 → 100644
View file @
16c34d84
package
com
.
yxproject
.
start
.
api
;
//import com.yxproject.start.service.FindCbCountByDealdateViewService;
import
com.yxproject.start.service.CardBodyService
;
import
com.yxproject.start.service.FindTaskByDealdateViewService
;
import
org.springframework.beans.factory.annotation.Autowired
;
import
org.springframework.web.bind.annotation.RequestMapping
;
import
org.springframework.web.bind.annotation.RestController
;
import
java.util.List
;
import
java.util.Map
;
/**
* Created by Administrator on 2018/11/21.
*/
@RestController
@RequestMapping
(
"yingxin"
)
public
class
YingxinApi
{
@Autowired
private
FindTaskByDealdateViewService
findTaskByDealdateViewService
;
// private FindCbCountByDealdateViewService findCbCountByDealdateViewService;
@Autowired
private
CardBodyService
cardBodyService
;
@RequestMapping
(
"getGroupInfo"
)
public
List
<
Map
<
String
,
Object
>>
getGroupInfo
()
{
List
<
Map
<
String
,
Object
>>
list
=
findTaskByDealdateViewService
.
getAccGroupData
();
return
list
;
}
@RequestMapping
(
"getCbCountInfo"
)
public
List
<
Map
<
String
,
Object
>>
getCbCountInfo
()
{
List
<
Map
<
String
,
Object
>>
list
=
cardBodyService
.
getCbCount
();
return
list
;
}
@RequestMapping
(
"getCbBodyCountInfo"
)
public
List
<
Map
<
String
,
Object
>>
getCbBodyCountInfo
()
{
List
<
Map
<
String
,
Object
>>
list
=
cardBodyService
.
getCbBodyCount
();
return
list
;
}
}
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