zhanghua
2023-09-08 7ef4892f9f24f941aca37e6b3991b808a0aca619
ycl-platform/src/main/java/com/ycl/service/resources/IImageResourcesService.java
@@ -1,13 +1,17 @@
package com.ycl.service.resources;
import com.baomidou.mybatisplus.core.conditions.Wrapper;
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
import com.baomidou.mybatisplus.extension.service.IService;
import com.ycl.entity.resources.ImageResources;
import com.ycl.vo.resources.MediaVO;
import java.util.Collection;
import java.util.Map;
/**
 * <p>
 *  服务类
 * 服务类
 * </p>
 *
 * @author lyq
@@ -15,5 +19,8 @@
 */
public interface IImageResourcesService extends IService<ImageResources> {
    Page<MediaVO> selectImages(Integer type, String startTime, String endTime, Long size, Long current);
    Page<MediaVO> selectImages(String type, String startTime, String endTime, Long size, Long current);
    Map<Long, String> getUrlMap(Collection<Long> ids, String type);
}