|
@@ -1,7 +1,11 @@
|
|
package com.diagbot.mapper;
|
|
package com.diagbot.mapper;
|
|
|
|
|
|
|
|
+import java.util.List;
|
|
|
|
+
|
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
|
|
|
+import com.diagbot.dto.GetAllLisConceptDTO;
|
|
import com.diagbot.entity.Concept;
|
|
import com.diagbot.entity.Concept;
|
|
|
|
+import com.diagbot.vo.GetAllLisConceptVO;
|
|
|
|
|
|
/**
|
|
/**
|
|
* <p>
|
|
* <p>
|
|
@@ -12,6 +16,13 @@ import com.diagbot.entity.Concept;
|
|
* @since 2019-01-30
|
|
* @since 2019-01-30
|
|
*/
|
|
*/
|
|
public interface ConceptMapper extends BaseMapper<Concept> {
|
|
public interface ConceptMapper extends BaseMapper<Concept> {
|
|
|
|
+
|
|
|
|
+ /**
|
|
|
|
+ * 获取所有化验公表项
|
|
|
|
+ * @param getAllLisConceptVO
|
|
|
|
+ * @return
|
|
|
|
+ */
|
|
|
|
+ List<GetAllLisConceptDTO> getAllLisConcept(GetAllLisConceptVO getAllLisConceptVO);
|
|
|
|
|
|
|
|
|
|
}
|
|
}
|