| 123456789101112131415161718192021222324252627 |
- package top.lvzhiqiang.service;
- import com.github.pagehelper.PageInfo;
- import org.springframework.web.multipart.MultipartFile;
- import top.lvzhiqiang.dto.R;
- import top.lvzhiqiang.entity.FileImage;
- import java.util.Map;
- /**
- * 照片信息Service
- *
- * @author lvzhiqiang
- * 2024/8/26 11:02
- */
- public interface PictureInfoService {
- /**
- * 条件查询
- *
- * @return
- */
- PageInfo<FileImage> getPictureInfoPage(Map<String, Object> params);
- R insertOrUpdateImg(MultipartFile file, String remark, Long categoryId, String id);
- R deleteImgs(Long imageId);
- }
|