ImportRubAndHandService.java 377 B

123456789101112131415
  1. package com.xjrsoft.module.veb.service;
  2. import org.springframework.web.multipart.MultipartFile;
  3. import java.io.IOException;
  4. /**
  5. * 手搓导入
  6. */
  7. public interface ImportRubAndHandService {
  8. String courseSubject(MultipartFile file) throws IOException, IllegalAccessException;
  9. String internshipPlan(MultipartFile file) throws IOException, IllegalAccessException;
  10. }