| 123456789101112131415 |
- package com.xjrsoft.module.veb.service;
- import org.springframework.web.multipart.MultipartFile;
- import java.io.IOException;
- /**
- * 手搓导入
- */
- public interface ImportRubAndHandService {
- String courseSubject(MultipartFile file) throws IOException, IllegalAccessException;
- String internshipPlan(MultipartFile file) throws IOException, IllegalAccessException;
- }
|