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.
19 lines
367 B
19 lines
367 B
package org.springblade.upload.service; |
|
|
|
|
|
import org.springblade.core.tool.api.R; |
|
import org.springframework.web.multipart.MultipartFile; |
|
|
|
/** |
|
* 文件 Service 接口 |
|
* |
|
*/ |
|
public interface IProBusLineImgService { |
|
/** |
|
*文件上传接口 |
|
* @return |
|
*/ |
|
R upload(MultipartFile file, Integer imgType,Long busLineId); |
|
|
|
R queryList(Long id); |
|
}
|
|
|