zss
2024-12-20 c9e36e23b3f95f6027d78483dfc23021d1ec6261
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
package com.yuanchu.mom.service;
 
import com.baomidou.mybatisplus.core.metadata.IPage;
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
import com.baomidou.mybatisplus.extension.service.IService;
import com.yuanchu.mom.dto.InternalCheckDto;
import com.yuanchu.mom.pojo.InternalCheck;
import com.yuanchu.mom.pojo.InternalCheck;
 
import javax.servlet.http.HttpServletResponse;
 
/**
 * 内审检查表
 *
 * @author zhuo
 * @since 2024-11-11
 */
public interface InternalCheckService extends IService<InternalCheck> {
 
    /**
     * 内审检查分页查询
     * @param page
     * @param internalCheck
     * @return
     */
    IPage<InternalCheckDto> pageInternalCheck(Page page, InternalCheck internalCheck);
 
    /**
     * 内审检查新增
     * @param internalCheck
     * @return
     */
    boolean addInternalCheck(InternalCheckDto internalCheck);
 
    /**
     * 内审检查修改
     * @param internalCheck
     * @return
     */
    boolean updateInternalCheck(InternalCheckDto internalCheck);
 
    /**
     * 内审检查删除
     * @param checkId
     * @return
     */
    boolean delInternalCheck(Integer checkId);
 
    /**
     * 内审检查查看详情
     * @param checkId
     * @return
     */
    InternalCheckDto getInternalCheckOne(Integer checkId);
 
    /**
     * 内审检查批准
     * @param internalCheck
     * @return
     */
    boolean ratifyInternalCheck(InternalCheckDto internalCheck);
 
    /**
     * 导出内审检查
     * @param checkId
     * @param response
     */
    void exportInternalCheck(Integer checkId, HttpServletResponse response);
}