| | |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * 疾病关联Mapper接口 |
| | | * 指标疾病Mapper接口 |
| | | * |
| | | * @author ruoyi |
| | | * @date 2023-06-26 |
| | | * @date 2023-12-20 |
| | | */ |
| | | @Mapper |
| | | public interface Icd10AssociationMapper { |
| | | /** |
| | | * 查询疾病关联 |
| | | * 查询指标疾病 |
| | | * |
| | | * @param icd10code 疾病关联主键 |
| | | * @return 疾病关联 |
| | | * @param id 指标疾病主键 |
| | | * @return 指标疾病 |
| | | */ |
| | | public Icd10Association selectIcd10AssociationByIcd10code(String icd10code); |
| | | public Icd10Association selectIcd10AssociationById(Long id); |
| | | |
| | | /** |
| | | * 查询疾病关联列表 |
| | | * 查询指标疾病列表 |
| | | * |
| | | * @param icd10Association 疾病关联 |
| | | * @return 疾病关联集合 |
| | | * @param icd10Association 指标疾病 |
| | | * @return 指标疾病集合 |
| | | */ |
| | | public List<Icd10Association> selectIcd10AssociationList(Icd10Association icd10Association); |
| | | |
| | | /** |
| | | * 新增疾病关联 |
| | | * 新增指标疾病 |
| | | * |
| | | * @param icd10Association 疾病关联 |
| | | * @param icd10Association 指标疾病 |
| | | * @return 结果 |
| | | */ |
| | | public int insertIcd10Association(Icd10Association icd10Association); |
| | | |
| | | /** |
| | | * 修改疾病关联 |
| | | * 修改指标疾病 |
| | | * |
| | | * @param icd10Association 疾病关联 |
| | | * @param icd10Association 指标疾病 |
| | | * @return 结果 |
| | | */ |
| | | public int updateIcd10Association(Icd10Association icd10Association); |
| | | |
| | | /** |
| | | * 删除疾病关联 |
| | | * 删除指标疾病 |
| | | * |
| | | * @param icd10code 疾病关联主键 |
| | | * @param id 指标疾病主键 |
| | | * @return 结果 |
| | | */ |
| | | public int deleteIcd10AssociationByIcd10code(String icd10code); |
| | | public int deleteIcd10AssociationById(Long id); |
| | | |
| | | /** |
| | | * 批量删除疾病关联 |
| | | * 批量删除指标疾病 |
| | | * |
| | | * @param icd10codes 需要删除的数据主键集合 |
| | | * @param ids 需要删除的数据主键集合 |
| | | * @return 结果 |
| | | */ |
| | | public int deleteIcd10AssociationByIcd10codes(String[] icd10codes); |
| | | public int deleteIcd10AssociationByIds(Long[] ids); |
| | | } |