InstructionInfoMapper.java 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. package com.phm.web.mapper;
  2. import java.util.List;
  3. import com.phm.web.domain.InstructionInfo;
  4. /**
  5. * 指令信息Mapper接口
  6. *
  7. * @author phm
  8. * @date 2023-08-22
  9. */
  10. public interface InstructionInfoMapper {
  11. /**
  12. * 查询指令信息
  13. *
  14. * @param id 指令信息主键
  15. * @return 指令信息
  16. */
  17. public InstructionInfo selectInstructionInfoById(Long id);
  18. /**
  19. * 查询指令信息列表
  20. *
  21. * @param instructionInfo 指令信息
  22. * @return 指令信息集合
  23. */
  24. public List<InstructionInfo> selectInstructionInfoList(InstructionInfo instructionInfo);
  25. /**
  26. * 新增指令信息
  27. *
  28. * @param instructionInfo 指令信息
  29. * @return 结果
  30. */
  31. public int insertInstructionInfo(InstructionInfo instructionInfo);
  32. /**
  33. * 修改指令信息
  34. *
  35. * @param instructionInfo 指令信息
  36. * @return 结果
  37. */
  38. public int updateInstructionInfo(InstructionInfo instructionInfo);
  39. /**
  40. * 删除指令信息
  41. *
  42. * @param id 指令信息主键
  43. * @return 结果
  44. */
  45. public int deleteInstructionInfoById(Long id);
  46. /**
  47. * 批量删除指令信息
  48. *
  49. * @param ids 需要删除的数据主键集合
  50. * @return 结果
  51. */
  52. public int deleteInstructionInfoByIds(Long[] ids);
  53. }