You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

62 lines
1.2 KiB
Java

3 years ago
package com.ruoyi.system.service;
import java.util.List;
import com.ruoyi.system.domain.TPatient;
/**
* Service
*
* @author ruoyi
* @date 2022-08-03
*/
public interface ITPatientService
{
/**
*
*
* @param id
* @return
*/
public TPatient selectTPatientById(Long id);
/**
*
*
* @param tPatient
* @return
*/
public List<TPatient> selectTPatientList(TPatient tPatient);
/**
*
*
* @param tPatient
* @return
*/
public int insertTPatient(TPatient tPatient);
/**
*
*
* @param tPatient
* @return
*/
public int updateTPatient(TPatient tPatient);
/**
*
*
* @param ids
* @return
*/
public int deleteTPatientByIds(Long[] ids);
/**
*
*
* @param id
* @return
*/
public int deleteTPatientById(Long id);
}