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.
24 lines
514 B
Java
24 lines
514 B
Java
package com.docus.bgts.mapper;
|
|
|
|
|
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
|
import com.docus.bgts.entity.AfCollectTask;
|
|
import org.apache.ibatis.annotations.Param;
|
|
|
|
/**
|
|
* <p>
|
|
* 病案采集任务 Mapper 接口
|
|
* </p>
|
|
*
|
|
* @author 曾文和
|
|
* @since 2021-05-07
|
|
*/
|
|
public interface AfCollectTaskMapper extends BaseMapper<AfCollectTask> {
|
|
/**
|
|
* 获取病案id通过报告唯一单号
|
|
* @param empId
|
|
* @return
|
|
*/
|
|
String getpatientIdByEmpId(@Param("jzh") String empId);
|
|
}
|