12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- package com.kgraph.web.mapper;
- import java.util.List;
- import com.kgraph.web.domain.equipSys;
- /**
- * 系统与子系统Mapper接口
- *
- * @author wcf
- * @date 2023-02-13
- */
- public interface equipSysMapper
- {
- /**
- * 查询系统与子系统
- *
- * @param id 系统与子系统主键
- * @return 系统与子系统
- */
- public equipSys selectequipSysById(Long id);
- /**
- * 查询系统与子系统列表
- *
- * @param equipSys 系统与子系统
- * @return 系统与子系统集合
- */
- public List<equipSys> selectequipSysList(equipSys equipSys);
- /**
- * 新增系统与子系统
- *
- * @param equipSys 系统与子系统
- * @return 结果
- */
- public int insertequipSys(equipSys equipSys);
- /**
- * 修改系统与子系统
- *
- * @param equipSys 系统与子系统
- * @return 结果
- */
- public int updateequipSys(equipSys equipSys);
- /**
- * 删除系统与子系统
- *
- * @param id 系统与子系统主键
- * @return 结果
- */
- public int deleteequipSysById(Long id);
- /**
- * 批量删除系统与子系统
- *
- * @param ids 需要删除的数据主键集合
- * @return 结果
- */
- public int deleteequipSysByIds(Long[] ids);
- }
|