// // Source code recreated from a .class file by IntelliJ IDEA // (powered by FernFlower decompiler) // package com.docus.bgts.facade; import com.baomidou.mybatisplus.extension.service.IService; import com.docus.bgts.entity.AfCollectTask; import com.docus.bgts.entity.ReportDownDto; import java.util.List; import java.util.Map; public interface IAfCollectTaskService extends IService { String getpatientIdByEmpId(String empId); void insert(ReportDownDto reportDownDto); String getJzhByInpatientNo(String inPatientNo, String visitId); String getJzhByJzh(String jzh); void insertServer(ReportDownDto reportDownDto); void updateInterfaceCollect(String collectSubId, int state); List getjzhByDate(String startDate, String endDate, int size, int current); List getC1ByPatientId(List patientIds, String collectorId); List getPatientIdByC1(List C1s); List getJzhByPatientId(List patientIds); String getPatientIdByInpatientNo(String inPatientNo, String visitId); List getCompleteIntegrity(List jzhs); }