| | |
| | | import com.gkhy.exam.common.annotation.RepeatSubmit; |
| | | import com.gkhy.exam.common.api.CommonResult; |
| | | import com.gkhy.exam.common.enums.BusinessType; |
| | | import com.gkhy.exam.system.domain.CompanyIndustryTemplate; |
| | | import com.gkhy.exam.system.domain.ExCourse; |
| | | import com.gkhy.exam.system.domain.TrainPlan; |
| | | import com.gkhy.exam.system.service.ExCourseService; |
| | |
| | | } |
| | | |
| | | /** |
| | | * 培训计划完成列表 |
| | | * @param companyId |
| | | * @return |
| | | */ |
| | | @ApiOperation(value = "培训计划完成列表") |
| | | @GetMapping("/plan/listByStatue") |
| | | public CommonResult selectTrainPlanListByState(@RequestParam("companyId") Integer companyId){ |
| | | return CommonResult.success(trainPlanService.selectTrainPlanListByStatus(companyId)); |
| | | } |
| | | |
| | | /** |
| | | * 培训计划新增 |
| | | * @param trainPlan |
| | | * @return |