You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

39 lines
1.1 KiB
Java

//
// 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<AfCollectTask> {
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<Map> getjzhByDate(String startDate, String endDate, int size, int current);
List<String> getC1ByPatientId(List<String> patientIds, String collectorId);
List<String> getPatientIdByC1(List<String> C1s);
List<String> getJzhByPatientId(List<String> patientIds);
String getPatientIdByInpatientNo(String inPatientNo, String visitId);
List<Map> getCompleteIntegrity(List<String> jzhs);
}