TBranchPlanItemMapper.java 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. package com.ruoyi.branch.mapper;
  2. import java.util.List;
  3. import com.ruoyi.branch.domain.TBranchPlanItem;
  4. /**
  5. * 支部年度工作计划条目Mapper接口
  6. *
  7. * @author ruoyi
  8. * @date 2023-07-17
  9. */
  10. public interface TBranchPlanItemMapper
  11. {
  12. /**
  13. * 查询支部年度工作计划条目
  14. *
  15. * @param itemId 支部年度工作计划条目主键
  16. * @return 支部年度工作计划条目
  17. */
  18. public TBranchPlanItem selectTBranchPlanItemByItemId(Long itemId);
  19. /**
  20. * 查询支部年度工作计划条目列表
  21. *
  22. * @param tBranchPlanItem 支部年度工作计划条目
  23. * @return 支部年度工作计划条目集合
  24. */
  25. public List<TBranchPlanItem> selectTBranchPlanItemList(TBranchPlanItem tBranchPlanItem);
  26. /**
  27. * 新增支部年度工作计划条目
  28. *
  29. * @param tBranchPlanItem 支部年度工作计划条目
  30. * @return 结果
  31. */
  32. public int insertTBranchPlanItem(TBranchPlanItem tBranchPlanItem);
  33. /**
  34. * 修改支部年度工作计划条目
  35. *
  36. * @param tBranchPlanItem 支部年度工作计划条目
  37. * @return 结果
  38. */
  39. public int updateTBranchPlanItem(TBranchPlanItem tBranchPlanItem);
  40. /**
  41. * 删除支部年度工作计划条目
  42. *
  43. * @param itemId 支部年度工作计划条目主键
  44. * @return 结果
  45. */
  46. public int deleteTBranchPlanItemByItemId(Long itemId);
  47. /**
  48. * 批量删除支部年度工作计划条目
  49. *
  50. * @param itemIds 需要删除的数据主键集合
  51. * @return 结果
  52. */
  53. public int deleteTBranchPlanItemByItemIds(Long[] itemIds);
  54. }