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.

68 lines
1.5 KiB
Java

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