12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- package com.phm.web.mapper;
- import java.util.List;
- import com.phm.web.domain.InstructionInfo;
- /**
- * 指令信息Mapper接口
- *
- * @author phm
- * @date 2023-08-22
- */
- public interface InstructionInfoMapper {
- /**
- * 查询指令信息
- *
- * @param id 指令信息主键
- * @return 指令信息
- */
- public InstructionInfo selectInstructionInfoById(Long id);
- /**
- * 查询指令信息列表
- *
- * @param instructionInfo 指令信息
- * @return 指令信息集合
- */
- public List<InstructionInfo> selectInstructionInfoList(InstructionInfo instructionInfo);
- /**
- * 新增指令信息
- *
- * @param instructionInfo 指令信息
- * @return 结果
- */
- public int insertInstructionInfo(InstructionInfo instructionInfo);
- /**
- * 修改指令信息
- *
- * @param instructionInfo 指令信息
- * @return 结果
- */
- public int updateInstructionInfo(InstructionInfo instructionInfo);
- /**
- * 删除指令信息
- *
- * @param id 指令信息主键
- * @return 结果
- */
- public int deleteInstructionInfoById(Long id);
- /**
- * 批量删除指令信息
- *
- * @param ids 需要删除的数据主键集合
- * @return 结果
- */
- public int deleteInstructionInfoByIds(Long[] ids);
- }
|