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
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);
|
||
|
}
|