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.

56 lines
1.4 KiB
Java

package com.docus.bgts.mapper.dbmysql;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.docus.bgts.entity.AfCollectTask;
import org.apache.ibatis.annotations.Param;
import java.util.List;
/**
* <p>
* Mapper
* </p>
*
* @author
* @since 2021-05-07
*/
public interface AfCollectTaskMapper extends BaseMapper<AfCollectTask> {
/**
* id
* @param empId
* @return
*/
String getpatientIdByEmpId(@Param("jzh") String empId);
/**
* jzh
* @param startDate
* @param endDate
* @return
*/
List<String> getjzhByDate(@Param("startDate") String startDate,@Param("endDate") String endDate);
/**
*
* @param patientIds
* @param collectorId
* @return
*/
List<String> getC1ByPatientId(@Param("patientIds") List<String> patientIds,@Param("collectorId") String collectorId);
/**
* patient_id
* @param C1s
* @return
*/
List<String> getPatientIdByC1(@Param("C1s") List<String> C1s);
/**
* jzh
* @param patientIds
* @return
*/
List<String> getJzhByPatientId(@Param("patientIds") List<String> patientIds);
}