zjh
2025-01-21 7caeae303d4a93d0af2dc2d2f546987dd192be3c
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
70
71
72
73
74
75
76
77
package com.ltkj.hosp.service;
 
import java.util.List;
 
import com.baomidou.mybatisplus.core.conditions.Wrapper;
import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
import com.baomidou.mybatisplus.extension.service.IService;
import com.ltkj.common.core.domain.AjaxResult;
import com.ltkj.hosp.domain.TjReport;
 
/**
 * 体检报告存储Service接口
 *
 * @author ltkj
 * @date 2022-12-06
 */
public interface ITjReportService extends IService<TjReport> {
    /**
     * 查询体检报告存储
     *
     * @param reId 体检报告存储主键
     * @return 体检报告存储
     */
    public TjReport selectTjReportByReId(Long reId);
 
    /**
     * 查询体检报告存储列表
     *
     * @param tjReport 体检报告存储
     * @return 体检报告存储集合
     */
    public List<TjReport> selectTjReportList(TjReport tjReport);
 
    /**
     * 新增体检报告存储
     *
     * @param tjReport 体检报告存储
     * @return 结果
     */
    public int insertTjReport(TjReport tjReport);
 
    /**
     * 修改体检报告存储
     *
     * @param tjReport 体检报告存储
     * @return 结果
     */
    public int updateTjReport(TjReport tjReport);
 
    /**
     * 批量删除体检报告存储
     *
     * @param reIds 需要删除的体检报告存储主键集合
     * @return 结果
     */
    public int deleteTjReportByReIds(Long[] reIds);
 
    /**
     * 删除体检报告存储信息
     *
     * @param reId 体检报告存储主键
     * @return 结果
     */
    public int deleteTjReportByReId(Long reId);
 
 
    public AjaxResult getTjReport(String tjNumber);
 
    Integer getSelectCount(Wrapper<TjReport> queryWrapper);
 
    /**
     * 批量生成体检报告
     * @param tjNumbers 体检号集合
     * @return
     */
    AjaxResult makeBatchReport(List<String> tjNumbers);
}