| | |
| | | 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 |
| | | */ |
| | | public interface ServiceDonateorganMapper extends BaseMapper<ServiceDonateorgan> |
| | | { |
| | | @Mapper |
| | | public interface ServiceDonateorganMapper extends BaseMapper<ServiceDonateorgan> { |
| | | /** |
| | | * 查询捐献器官管理列表 |
| | | * |
| | |
| | | Integer getAllProcessOrgans(TimeVO timeVO); |
| | | |
| | | Integer getAllFinishedOrgans(TimeVO timeVO); |
| | | |
| | | |
| | | |
| | | int getAllFinishedOrgansThisYear(TimeVO timeVO); |
| | |
| | | |
| | | int getOrgansCount(@Param("starttime") Date starttime, @Param("endtime") Date endtime, @Param("organizationid") String organizationid); |
| | | |
| | | int getDistinctOrgansCount(@Param("organno") String organno, @Param("starttime") Date starttime, @Param("endtime") Date endtime, @Param("city") String city, @Param("reporterno") String reporterno); |
| | | 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); |
| | | } |