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.
28 lines
628 B
28 lines
628 B
package org.springblade.upload.service; |
|
|
|
|
|
import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper; |
|
import org.springblade.core.tool.api.R; |
|
import org.springblade.modules.business.vo.imgVo; |
|
import org.springblade.upload.entity.PocBusLineImg; |
|
import org.springframework.web.multipart.MultipartFile; |
|
|
|
import java.util.ArrayList; |
|
import java.util.List; |
|
|
|
/** |
|
* 文件 Service 接口 |
|
* |
|
*/ |
|
public interface IProBusLineImgService { |
|
/** |
|
*文件上传接口 |
|
* @return |
|
*/ |
|
R upload(MultipartFile file, Integer imgType,Long busLineId); |
|
|
|
R queryList(Long id); |
|
|
|
List<imgVo> getImgByid(Long id); |
|
|
|
}
|
|
|