package com.smartor.service; 
 | 
  
 | 
import com.smartor.domain.PatSpeciallist; 
 | 
  
 | 
import java.util.List; 
 | 
  
 | 
/** 
 | 
 * 专病患者Service接口 
 | 
 * 
 | 
 * @author ruoyi 
 | 
 * @date 2024-08-02 
 | 
 */ 
 | 
public interface IPatSpeciallistService 
 | 
{ 
 | 
    /** 
 | 
     * 查询专病患者 
 | 
     * 
 | 
     * @param id 专病患者主键 
 | 
     * @return 专病患者 
 | 
     */ 
 | 
    public PatSpeciallist selectPatSpeciallistById(Long id); 
 | 
  
 | 
    /** 
 | 
     * 查询专病患者列表 
 | 
     * 
 | 
     * @param patSpeciallist 专病患者 
 | 
     * @return 专病患者集合 
 | 
     */ 
 | 
    public List<PatSpeciallist> selectPatSpeciallistList(PatSpeciallist patSpeciallist); 
 | 
  
 | 
    /** 
 | 
     * 新增专病患者 
 | 
     * 
 | 
     * @param patSpeciallist 专病患者 
 | 
     * @return 结果 
 | 
     */ 
 | 
    public int insertPatSpeciallist(PatSpeciallist patSpeciallist); 
 | 
  
 | 
    /** 
 | 
     * 修改专病患者 
 | 
     * 
 | 
     * @param patSpeciallist 专病患者 
 | 
     * @return 结果 
 | 
     */ 
 | 
    public int updatePatSpeciallist(PatSpeciallist patSpeciallist); 
 | 
  
 | 
    /** 
 | 
     * 批量删除专病患者 
 | 
     * 
 | 
     * @param ids 需要删除的专病患者主键集合 
 | 
     * @return 结果 
 | 
     */ 
 | 
    public int deletePatSpeciallistByIds(Long[] ids); 
 | 
  
 | 
    /** 
 | 
     * 删除专病患者信息 
 | 
     * 
 | 
     * @param id 专病患者主键 
 | 
     * @return 结果 
 | 
     */ 
 | 
    public int deletePatSpeciallistById(Long id); 
 | 
} 
 |