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
16 lines
358 B
package com.iflytop.nuclear.service;
|
|
|
|
import org.springframework.transaction.annotation.Transactional;
|
|
import org.springframework.web.multipart.MultipartFile;
|
|
|
|
import java.io.IOException;
|
|
|
|
/**
|
|
* @author cool
|
|
* @date 2023/6/28 14:20
|
|
*/
|
|
@Transactional
|
|
public interface UploadService {
|
|
boolean verifyFileFormat(MultipartFile file) throws IOException;
|
|
|
|
}
|