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.mapper;
import java.util.List;
import com.ruoyi.system.domain.TTitle;
/**
* Mapper
*
* @author ruoyi
* @date 2022-08-03
*/
public interface TTitleMapper
{
/**
*
*
* @param id
* @return
*/
public TTitle selectTTitleById(Long id);
/**
*
*
* @param tTitle
* @return
*/
public List<TTitle> selectTTitleList(TTitle tTitle);
/**
*
*
* @param tTitle
* @return
*/
public int insertTTitle(TTitle tTitle);
/**
*
*
* @param tTitle
* @return
*/
public int updateTTitle(TTitle tTitle);
/**
*
*
* @param id
* @return
*/
public int deleteTTitleById(Long id);
/**
*
*
* @param ids
* @return
*/
public int deleteTTitleByIds(Long[] ids);
}