| | |
| | | import org.springblade.modules.system.service.IUserService; |
| | | import org.springblade.modules.training.entity.TrainingRegistration; |
| | | import org.springblade.modules.training.service.TrainingRegistrationService; |
| | | import org.springframework.beans.factory.annotation.Autowired; |
| | | import org.springframework.stereotype.Service; |
| | | import org.springframework.transaction.annotation.Transactional; |
| | | |
| | |
| | | * @author zhongrj |
| | | */ |
| | | @Service |
| | | @AllArgsConstructor |
| | | public class ApplyServiceImpl extends ServiceImpl<ApplyMapper, Apply> implements ApplyService { |
| | | |
| | | @Autowired |
| | | private ExamPaperService examPaperService; |
| | | |
| | | private final ExamPaperService examPaperService; |
| | | @Autowired |
| | | private IUserService userService; |
| | | |
| | | private final IUserService userService; |
| | | |
| | | private final TrainingRegistrationService trainingRegistrationService; |
| | | @Autowired |
| | | private TrainingRegistrationService trainingRegistrationService; |
| | | |
| | | /** |
| | | * 自定义分页数据 |