linwe
2024-05-25 749f2fe0ee4061c502ab9a2c22773c1e2e51b595
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
package org.springblade.modules.resource.service;
 
import com.baomidou.mybatisplus.core.metadata.IPage;
import com.baomidou.mybatisplus.extension.service.IService;
import org.springblade.modules.resource.entity.AttachData;
import org.springblade.modules.resource.vo.AttachDataVO;
import org.springblade.modules.resource.vo.AttachVO;
 
/**
 * 附件数据表 服务类
 *
 * @author zhongrj
 */
public interface IAttachDataService extends IService<AttachData> {
 
    /**
     * 自定义分页
     *
     * @param page
     * @param attachData
     * @return
     */
    IPage<AttachDataVO> selectAttachDataPage(IPage<AttachDataVO> page, AttachDataVO attachData);
 
    /**
     * 附件临时文件信息清理
     * @param param
     * @return
     */
    boolean removeBladeAttachDatas(String param);
}