zhangherong
2025-04-27 1007e0b552accd3288e7da6b47d8cc49a03bdf62
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
package org.jeecg.modules.eam.service;
 
import org.jeecg.modules.eam.entity.EamEquipmentAttachment;
import com.baomidou.mybatisplus.extension.service.IService;
import org.jeecg.modules.eam.request.EamEquipmentAttachmentRequest;
 
import javax.servlet.http.HttpServletResponse;
 
/**
 * @Description: 设备文档台账使用
 * @Author: jeecg-boot
 * @Date:   2025-04-16
 * @Version: V1.0
 */
public interface IEamEquipmentAttachmentService extends IService<EamEquipmentAttachment> {
 
    /**
     *
     * @param response
     * @param byId
     */
    void downloadFile(HttpServletResponse response, EamEquipmentAttachment byId);
 
    /**
     * 保存对象
     * @param request
     * @return
     */
    boolean saveEntity(EamEquipmentAttachmentRequest request);
}