zhangherong
2025-07-10 68dabe6222f72ca13c0ebfc606f13a7a0ed6e0f9
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package org.jeecg.modules.eam.service;
 
import org.jeecg.modules.eam.entity.EamPurchasePlanAttachment;
import com.baomidou.mybatisplus.extension.service.IService;
import org.jeecg.modules.eam.request.EamPurchasePlanAttachmentRequest;
 
import javax.servlet.http.HttpServletResponse;
 
/**
 * @Description: eam_purchase_plan_attachment
 * @Author: jeecg-boot
 * @Date:   2025-06-18
 * @Version: V1.0
 */
public interface IEamPurchasePlanAttachmentService extends IService<EamPurchasePlanAttachment> {
 
    void saveAttachmentList(EamPurchasePlanAttachmentRequest request);
 
    void downloadFile(HttpServletResponse response, EamPurchasePlanAttachment byId);
}