| | |
| | | |
| | | import com.smartor.domain.Icd10; |
| | | import org.apache.ibatis.annotations.Mapper; |
| | | import org.apache.ibatis.annotations.Param; |
| | | |
| | | import java.util.List; |
| | | |
| | |
| | | public List<Icd10> selectIcd10List(Icd10 icd10); |
| | | |
| | | /** |
| | | * 查询疾病列表 |
| | | * |
| | | * @param icd10 疾病 |
| | | * @return 疾病集合 |
| | | */ |
| | | public List<Icd10> exactQueryIcd10List(Icd10 icd10); |
| | | |
| | | /** |
| | | * 新增疾病 |
| | | * |
| | | * @param icd10 疾病 |
| | |
| | | */ |
| | | public int insertIcd10(Icd10 icd10); |
| | | |
| | | /** |
| | | * 批量新增疾病 |
| | | * |
| | | * @param icd10s 疾病集合 |
| | | * @return 结果 |
| | | */ |
| | | public int batchIcd10(List<Icd10> icd10s); |
| | | |
| | | /** |
| | | * 批量查询已存在的 icdcode(用于去重) |
| | | * |
| | | * @param icdcodes icdcode集合 |
| | | * @return 已存在的 icdcode 集合 |
| | | */ |
| | | public List<String> selectExistingIcdcodes(@Param("icdnames") List<String> icdnames); |
| | | |
| | | /** |
| | | * 修改疾病 |