package com.smartor.mapper; 
 | 
  
 | 
import com.smartor.domain.Icd10; 
 | 
import org.apache.ibatis.annotations.Mapper; 
 | 
  
 | 
import java.util.List; 
 | 
  
 | 
/** 
 | 
 * 疾病Mapper接口 
 | 
 * 
 | 
 * @author ruoyi 
 | 
 * @date 2023-12-21 
 | 
 */ 
 | 
@Mapper 
 | 
public interface Icd10Mapper { 
 | 
    /** 
 | 
     * 查询疾病 
 | 
     * 
 | 
     * @param icdid 疾病主键 
 | 
     * @return 疾病 
 | 
     */ 
 | 
    public Icd10 selectIcd10ByIcdid(Long icdid); 
 | 
  
 | 
    /** 
 | 
     * 查询疾病列表 
 | 
     * 
 | 
     * @param icd10 疾病 
 | 
     * @return 疾病集合 
 | 
     */ 
 | 
    public List<Icd10> selectIcd10List(Icd10 icd10); 
 | 
  
 | 
    /** 
 | 
     * 新增疾病 
 | 
     * 
 | 
     * @param icd10 疾病 
 | 
     * @return 结果 
 | 
     */ 
 | 
    public int insertIcd10(Icd10 icd10); 
 | 
  
 | 
    public int batchIcd10(List<Icd10> icd10s); 
 | 
  
 | 
  
 | 
    /** 
 | 
     * 修改疾病 
 | 
     * 
 | 
     * @param icd10 疾病 
 | 
     * @return 结果 
 | 
     */ 
 | 
    public int updateIcd10(Icd10 icd10); 
 | 
  
 | 
    /** 
 | 
     * 删除疾病 
 | 
     * 
 | 
     * @param icdid 疾病主键 
 | 
     * @return 结果 
 | 
     */ 
 | 
    public int deleteIcd10ByIcdid(Long icdid); 
 | 
  
 | 
    /** 
 | 
     * 批量删除疾病 
 | 
     * 
 | 
     * @param icdids 需要删除的数据主键集合 
 | 
     * @return 结果 
 | 
     */ 
 | 
    public int deleteIcd10ByIcdids(Long[] icdids); 
 | 
} 
 |