package com.ltkj.hosp.mapper;
|
|
import java.util.List;
|
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
import com.ltkj.hosp.domain.TjTeamAppLog;
|
import com.ltkj.hosp.domain.TjTeamSelectRecord;
|
import org.apache.ibatis.annotations.Mapper;
|
|
/**
|
* 小程序团队预约记录Mapper接口
|
*
|
* @author ltkj_赵佳豪&李格
|
* @date 2023-12-01
|
*/
|
@Mapper
|
public interface TjTeamAppLogMapper extends BaseMapper<TjTeamAppLog> {
|
/**
|
* 查询小程序团队预约记录
|
*
|
* @param id 小程序团队预约记录主键
|
* @return 小程序团队预约记录
|
*/
|
public TjTeamAppLog selectTjTeamAppLogById(Long id);
|
|
/**
|
* 查询小程序团队预约记录列表
|
*
|
* @param tjTeamAppLog 小程序团队预约记录
|
* @return 小程序团队预约记录集合
|
*/
|
public List<TjTeamAppLog> selectTjTeamAppLogList(TjTeamAppLog tjTeamAppLog);
|
|
/**
|
* 新增小程序团队预约记录
|
*
|
* @param tjTeamAppLog 小程序团队预约记录
|
* @return 结果
|
*/
|
public int insertTjTeamAppLog(TjTeamAppLog tjTeamAppLog);
|
|
/**
|
* 修改小程序团队预约记录
|
*
|
* @param tjTeamAppLog 小程序团队预约记录
|
* @return 结果
|
*/
|
public int updateTjTeamAppLog(TjTeamAppLog tjTeamAppLog);
|
|
/**
|
* 删除小程序团队预约记录
|
*
|
* @param id 小程序团队预约记录主键
|
* @return 结果
|
*/
|
public int deleteTjTeamAppLogById(Long id);
|
|
/**
|
* 批量删除小程序团队预约记录
|
*
|
* @param ids 需要删除的数据主键集合
|
* @return 结果
|
*/
|
public int deleteTjTeamAppLogByIds(Long[] ids);
|
}
|