|
@@ -1,8 +1,11 @@
|
|
|
package com.diagbot.mapper;
|
|
|
|
|
|
+import com.diagbot.dto.BABLDTO;
|
|
|
import com.diagbot.entity.ArRechome;
|
|
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
|
|
|
|
|
+import java.util.List;
|
|
|
+
|
|
|
/**
|
|
|
* <p>
|
|
|
* 病案首页信息Ar_RecHome Mapper 接口
|
|
@@ -12,5 +15,10 @@ import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
|
|
* @since 2020-01-17
|
|
|
*/
|
|
|
public interface ArRechomeMapper extends BaseMapper<ArRechome> {
|
|
|
-
|
|
|
+ /**
|
|
|
+ * 获取病案病历记录列表
|
|
|
+ *
|
|
|
+ * @return
|
|
|
+ */
|
|
|
+ List<BABLDTO> getBAZYList();
|
|
|
}
|