zss
2024-12-21 dfb1cbb378cb4577b6ce68ed91fb2525bf968a27
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
package com.yuanchu.mom.service;
 
import com.yuanchu.mom.pojo.PersonSupervisionProcessingSheet;
import com.baomidou.mybatisplus.extension.service.IService;
 
import javax.servlet.http.HttpServletResponse;
 
/**
 * <p>
 * 监督记录 - 处理单 服务类
 * </p>
 *
 * @author 芯导软件(江苏)有限公司
 * @since 2024-10-10 05:35:58
 */
public interface PersonSupervisionProcessingSheetService extends IService<PersonSupervisionProcessingSheet> {
 
    /**
     * 导出人员监督记录纠正处理单
     * @param supervisionRecordId
     * @param response
     */
    void exportSupervisionProcessingSheet(Integer supervisionRecordId, HttpServletResponse response);
}