| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- package com.ruoyi.rc.mapper;
- import java.util.List;
- import com.ruoyi.rc.domain.TOpenItem;
- /**
- * 开项Mapper接口
- *
- * @author ruoyi
- * @date 2024-07-19
- */
- public interface TOpenItemMapper
- {
- /**
- * 查询开项
- *
- * @param id 开项主键
- * @return 开项
- */
- public TOpenItem selectTOpenItemById(Long id);
- /**
- * 查询开项列表
- *
- * @param tOpenItem 开项
- * @return 开项集合
- */
- public List<TOpenItem> selectTOpenItemList(TOpenItem tOpenItem);
- /**
- * 新增开项
- *
- * @param tOpenItem 开项
- * @return 结果
- */
- public int insertTOpenItem(TOpenItem tOpenItem);
- /**
- * 修改开项
- *
- * @param tOpenItem 开项
- * @return 结果
- */
- public int updateTOpenItem(TOpenItem tOpenItem);
- /**
- * 删除开项
- *
- * @param id 开项主键
- * @return 结果
- */
- public int deleteTOpenItemById(Long id);
- /**
- * 批量删除开项
- *
- * @param ids 需要删除的数据主键集合
- * @return 结果
- */
- public int deleteTOpenItemByIds(Long[] ids);
- }
|