| | |
| | | package com.hz.his.feign.service.platform.bi; |
| | | |
| | | import com.hx.resultTool.Result; |
| | | import com.hz.his.dto.employee.EmpUserPlanDto; |
| | | import com.hz.his.dto.report.EmployeeReportDto; |
| | | import org.springframework.cloud.openfeign.FeignClient; |
| | | import org.springframework.web.bind.annotation.PostMapping; |
| | |
| | | Result analyseListOne(@RequestBody EmployeeReportDto employeeReportDto); |
| | | |
| | | |
| | | /** |
| | | * 查看客户开发计划 |
| | | */ |
| | | @PostMapping("/admin/employee/user/plan/list") |
| | | Result employeeUserPlanList(@RequestBody EmpUserPlanDto empUserPlanDto); |
| | | |
| | | /** |
| | | * 查看要通知的开发计划完成度 |
| | | */ |
| | | @PostMapping("/admin/employee/user/plan/list/rate") |
| | | Result employeeUserPlanRate(@RequestBody EmpUserPlanDto empUserPlanDto); |
| | | |
| | | } |