liusheng
2024-07-24 b700ed6963d12a004b2d000e2446b4ef31aac0f0
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
78
79
80
81
package com.ruoyi.project.mapper;
 
 
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
 
import java.sql.Time;
import java.util.Date;
import java.util.List;
 
import com.ruoyi.project.domain.ServiceDonateorgan;
import com.ruoyi.project.domain.vo.DistinctOrgansCount;
import com.ruoyi.project.domain.vo.DonateOrganVO;
import com.ruoyi.project.domain.vo.TimeVO;
import org.apache.ibatis.annotations.Mapper;
import org.apache.ibatis.annotations.Param;
 
/**
 * 捐献器官管理Mapper接口
 *
 * @author ruoyi
 * @date 2021-11-10
 */
@Mapper
public interface ServiceDonateorganMapper extends BaseMapper<ServiceDonateorgan> {
    /**
     * 查询捐献器官管理列表
     *
     * @param serviceDonateorgan 捐献器官管理
     * @return 捐献器官管理集合
     */
    public List<ServiceDonateorgan> selectServiceDonateorganList(ServiceDonateorgan serviceDonateorgan);
 
    List<ServiceDonateorgan> getAllDonateOrgans();
 
    Integer getAllProcessOrgans(TimeVO timeVO);
 
    Integer getAllFinishedOrgans(TimeVO timeVO);
 
 
    int getAllFinishedOrgansThisYear(TimeVO timeVO);
 
    int getOrganNumberThisYear(TimeVO timeVO);
 
    int getbiopsyBeforeNumberThisYear(TimeVO timeVO);
 
    int getbiopsyAfterNumberThisYear(TimeVO timeVO);
 
    int getmarginalOrgansNumberThisYear(TimeVO timeVO);
 
    int getPathogenPositiveNumberThisYear(TimeVO timeVO);
 
    int getPNFNumberThisYear(TimeVO timeVO);
 
    int getDGFNumberThisYear(TimeVO timeVO);
 
    List<ServiceDonateorgan> selectPNFOrganThisYear(TimeVO timeVO);
 
    List<ServiceDonateorgan> selectDGFOrganThisYear(TimeVO timeVO);
 
    List<DonateOrganVO> selectVOList(DonateOrganVO donateOrganVO);
 
    int getOrganNo(@Param("organno") String organno, @Param("starttime") Date starttime, @Param("endtime") Date endtime, @Param("city") String city, @Param("reporterno") String reporterno);
 
    Integer countNumber(TimeVO timeVO);
 
    Integer countPeople(TimeVO timeVO);
 
    List<ServiceDonateorgan> getAllDonateOrgansByTime(TimeVO timeVO);
 
    List<ServiceDonateorgan> selectServiceDonateorganListNotAbandon(ServiceDonateorgan serviceDonateorgan);
 
    int getOrgansCount(@Param("starttime") Date starttime, @Param("endtime") Date endtime, @Param("organizationid") String organizationid);
 
    DistinctOrgansCount getDistinctOrgansCount(@Param("organno") String organno, @Param("starttime") Date starttime, @Param("endtime") Date endtime, @Param("city") String city, @Param("reporterno") String reporterno);
 
    String getOrganNameByNo(String organno);
 
    List<ServiceDonateorgan> selectAll(TimeVO timeVO);
 
    List<ServiceDonateorgan> countList(ServiceDonateorgan serviceDonateorgan);
}