package com.ruoyi.interchange.mapper;
|
|
import com.ruoyi.interchange.domain.TbDataDefine;
|
|
import java.util.List;
|
|
/**
|
* 文件数据体定义Mapper接口
|
*
|
* @author ruoyi
|
* @date 2023-04-26
|
*/
|
public interface TbDataDefineMapper
|
{
|
/**
|
* 查询文件数据体定义
|
*
|
* @param id 文件数据体定义主键
|
* @return 文件数据体定义
|
*/
|
public TbDataDefine selectTbDataDefineById(Long id);
|
|
/**
|
* 查询文件数据体定义列表
|
*
|
* @param tbDataDefine 文件数据体定义
|
* @return 文件数据体定义集合
|
*/
|
public List<TbDataDefine> selectTbDataDefineList(TbDataDefine tbDataDefine);
|
|
/**
|
* 新增文件数据体定义
|
*
|
* @param tbDataDefine 文件数据体定义
|
* @return 结果
|
*/
|
public int insertTbDataDefine(TbDataDefine tbDataDefine);
|
|
/**
|
* 修改文件数据体定义
|
*
|
* @param tbDataDefine 文件数据体定义
|
* @return 结果
|
*/
|
public int updateTbDataDefine(TbDataDefine tbDataDefine);
|
|
/**
|
* 删除文件数据体定义
|
*
|
* @param id 文件数据体定义主键
|
* @return 结果
|
*/
|
public int deleteTbDataDefineById(Long id);
|
|
/**
|
* 批量删除文件数据体定义
|
*
|
* @param ids 需要删除的数据主键集合
|
* @return 结果
|
*/
|
public int deleteTbDataDefineByIds(Long[] ids);
|
}
|