FileService.java 516 B

12345678910111213141516171819202122232425
  1. package com.boot.security.server.service;
  2. import java.io.IOException;
  3. import org.springframework.web.multipart.MultipartFile;
  4. import com.boot.security.server.model.FileInfo;
  5. /**
  6. *
  7.  *  Class Name: FileService.java
  8.  *  Description: 
  9.  *  @author hp  DateTime 2019年7月4日 上午11:15:45 
  10.  *  @company bvit 
  11.  *  @email hu.peng@bvit.com.cn  
  12.  *  @version 1.0
  13.  * 
  14.  
  15. */
  16. public interface FileService {
  17. FileInfo save(MultipartFile file) throws IOException;
  18. void delete(String id);
  19. }