| | |
| | | import org.springframework.transaction.annotation.Transactional; |
| | | import org.springframework.web.multipart.MultipartFile; |
| | | import org.apache.poi.xwpf.usermodel.XWPFDocument; |
| | | |
| | | import javax.annotation.Resource; |
| | | import javax.servlet.http.HttpServletResponse; |
| | | import java.io.IOException; |
| | | import java.io.InputStream; |
| | |
| | | @Service |
| | | @Slf4j |
| | | @Transactional(rollbackFor = Exception.class) |
| | | @AllArgsConstructor |
| | | public class PersonSupervisePlanServiceImpl extends ServiceImpl<PersonSupervisePlanMapper, PersonSupervisePlan> implements PersonSupervisePlanService { |
| | | |
| | | @Resource |
| | | private PersonSupervisePlanDetailsService personSupervisePlanDetailsService; |
| | | |
| | | @Resource |
| | | private PersonSupervisePlanDetailsMapper personSupervisePlanDetailsMapper; |
| | | |
| | | @Resource |
| | | private PersonSupervisionRecordMapper personSupervisionRecordMapper; |
| | | |
| | | @Value("${file.path}") |