Commit 00a640b3 authored by Administrator's avatar Administrator

Merge remote-tracking branch 'origin/dev' into dev

parents b263c7b7 50f6e2e5
...@@ -96,6 +96,7 @@ public class UserApi { ...@@ -96,6 +96,7 @@ public class UserApi {
return yxjsonResponse.toJSONString(); return yxjsonResponse.toJSONString();
} }
/** /**
* 更新任务单; * 更新任务单;
* *
......
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;
}
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment