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.
18 lines
317 B
18 lines
317 B
11 months ago
|
package com.teaching.backend.service.resource;
|
||
|
|
||
|
import org.springframework.stereotype.Service;
|
||
|
import org.springframework.web.multipart.MultipartFile;
|
||
|
|
||
|
/**
|
||
|
* @Author:youhang
|
||
|
* @Date:2024-07-26-13:55
|
||
|
* @Description:
|
||
|
*/
|
||
|
@Service
|
||
|
public interface ResourceService {
|
||
|
|
||
|
public String upload(MultipartFile file);
|
||
|
|
||
|
|
||
|
}
|