核查系统api
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
358 B

  1. package com.iflytop.nuclear.service;
  2. import org.springframework.transaction.annotation.Transactional;
  3. import org.springframework.web.multipart.MultipartFile;
  4. import java.io.IOException;
  5. /**
  6. * @author cool
  7. * @date 2023/6/28 14:20
  8. */
  9. @Transactional
  10. public interface UploadService {
  11. boolean verifyFileFormat(MultipartFile file) throws IOException;
  12. }