package com.ltkj.hosp.service;
|
|
|
import com.baomidou.mybatisplus.extension.service.IService;
|
import com.ltkj.hosp.domain.TjReservation;
|
|
import java.util.List;
|
|
/**
|
* 体检预约Service接口
|
*
|
* @author ltkj
|
* @date 2022-11-28
|
*/
|
public interface ITjReservationService extends IService<TjReservation> {
|
/**
|
* 查询体检预约
|
*
|
* @param id 体检预约主键
|
* @return 体检预约
|
*/
|
public TjReservation selectTjReservationById(String id);
|
|
/**
|
* 查询体检预约列表
|
*
|
* @param tjReservation 体检预约
|
* @return 体检预约集合
|
*/
|
public List<TjReservation> selectTjReservationList(TjReservation tjReservation);
|
|
public List<TjReservation> selectTjReservationByDelete(TjReservation tjReservation);
|
|
/**
|
* 新增体检预约
|
*
|
* @param tjReservation 体检预约
|
* @return 结果
|
*/
|
public int insertTjReservation(TjReservation tjReservation);
|
|
/**
|
* 修改体检预约
|
*
|
* @param tjReservation 体检预约
|
* @return 结果
|
*/
|
public int updateTjReservation(TjReservation tjReservation);
|
|
/**
|
* 批量删除体检预约
|
*
|
* @param ids 需要删除的体检预约主键集合
|
* @return 结果
|
*/
|
public int deleteTjReservationByIds(Integer[] ids);
|
|
/**
|
* 删除体检预约信息
|
*
|
* @param id 体检预约主键
|
* @return 结果
|
*/
|
public int deleteTjReservationById(Integer id);
|
}
|