12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- package com.kgraph.web.mapper;
- import java.util.List;
- import com.kgraph.web.domain.equipParts;
- /**
- * 部件管理Mapper接口
- *
- * @author wcf
- * @date 2023-02-13
- */
- public interface equipPartsMapper
- {
- /**
- * 查询部件管理
- *
- * @param id 部件管理主键
- * @return 部件管理
- */
- public equipParts selectequipPartsById(Long id);
- /**
- * 查询部件管理列表
- *
- * @param equipParts 部件管理
- * @return 部件管理集合
- */
- public List<equipParts> selectequipPartsList(equipParts equipParts);
- /**
- * 新增部件管理
- *
- * @param equipParts 部件管理
- * @return 结果
- */
- public int insertequipParts(equipParts equipParts);
- /**
- * 修改部件管理
- *
- * @param equipParts 部件管理
- * @return 结果
- */
- public int updateequipParts(equipParts equipParts);
- /**
- * 删除部件管理
- *
- * @param id 部件管理主键
- * @return 结果
- */
- public int deleteequipPartsById(Long id);
- /**
- * 批量删除部件管理
- *
- * @param ids 需要删除的数据主键集合
- * @return 结果
- */
- public int deleteequipPartsByIds(Long[] ids);
- }
|