|
@@ -923,9 +923,15 @@ public class ProjectController {
|
|
public HttpRespMsg getTimeCostByUserCustom(String startDate,String endDate,String subCustomName,Integer customId,HttpServletRequest request,String fieldName){
|
|
public HttpRespMsg getTimeCostByUserCustom(String startDate,String endDate,String subCustomName,Integer customId,HttpServletRequest request,String fieldName){
|
|
return projectService.getTimeCostByUserCustom(startDate,endDate,subCustomName,customId,request,fieldName);
|
|
return projectService.getTimeCostByUserCustom(startDate,endDate,subCustomName,customId,request,fieldName);
|
|
}
|
|
}
|
|
|
|
+
|
|
@RequestMapping("/exportTimeCostByUserCustom")
|
|
@RequestMapping("/exportTimeCostByUserCustom")
|
|
public HttpRespMsg exportTimeCostByUserCustom(String startDate,String endDate,String subCustomName,Integer customId,HttpServletRequest request,String fieldName){
|
|
public HttpRespMsg exportTimeCostByUserCustom(String startDate,String endDate,String subCustomName,Integer customId,HttpServletRequest request,String fieldName){
|
|
return projectService.exportTimeCostByUserCustom(startDate,endDate,subCustomName,customId,request,fieldName);
|
|
return projectService.exportTimeCostByUserCustom(startDate,endDate,subCustomName,customId,request,fieldName);
|
|
}
|
|
}
|
|
|
|
+
|
|
|
|
+ @RequestMapping("/importPersonnelWithGroup")
|
|
|
|
+ public HttpRespMsg importPersonnelWithGroup(MultipartFile file,HttpServletRequest request){
|
|
|
|
+ return projectService.importPersonnelWithGroup(file,request);
|
|
|
|
+ }
|
|
}
|
|
}
|
|
|
|
|