ITStaffmgrService.java 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104
  1. package com.ruoyi.project.plant.service;
  2. import java.util.List;
  3. import com.ruoyi.framework.aspectj.lang.annotation.DataScope;
  4. import com.ruoyi.project.plant.domain.TStaffmgr;
  5. /**
  6. * 人员管理Service接口
  7. *
  8. * @author ruoyi
  9. * @date 2020-11-25
  10. */
  11. public interface ITStaffmgrService
  12. {
  13. /**
  14. * 查询导师下拉列表
  15. *
  16. * @param tStaffmgr 人员管理
  17. * @return 人员管理集合
  18. */
  19. @DataScope(deptAlias = "d")
  20. public List<TStaffmgr> selectMentorList(TStaffmgr tStaffmgr);
  21. /**
  22. * 查询人员管理
  23. *
  24. * @param staffid 人员管理员工编号
  25. * @return 人员管理
  26. */
  27. public TStaffmgr selectTStaffmgrByStaffId(String staffid);
  28. /**
  29. * 查询人员管理
  30. *
  31. * @param id 人员管理ID
  32. * @return 人员管理
  33. */
  34. public TStaffmgr selectTStaffmgrById(Long id);
  35. /**
  36. * 查询人员管理列表
  37. *
  38. * @param tStaffmgr 人员管理
  39. * @return 人员管理集合
  40. */
  41. public List<TStaffmgr> selectTStaffmgrList(TStaffmgr tStaffmgr);
  42. /**
  43. * 定时任务查询人员管理列表
  44. *
  45. * @param tStaffmgr 人员管理
  46. * @return 人员管理集合
  47. */
  48. public List<TStaffmgr> selectList(TStaffmgr tStaffmgr);
  49. List<TStaffmgr> selectTaskList(TStaffmgr tStaffmgr);
  50. /**
  51. * 培训查询人员管理列表
  52. *
  53. * @param tStaffmgr 人员管理
  54. * @return 人员管理集合
  55. */
  56. public List<TStaffmgr> selectRecordList(TStaffmgr tStaffmgr);
  57. /**
  58. * 新增人员管理
  59. *
  60. * @param tStaffmgr 人员管理
  61. * @return 结果
  62. */
  63. public int insertTStaffmgr(TStaffmgr tStaffmgr);
  64. /**
  65. * 修改人员管理
  66. *
  67. * @param tStaffmgr 人员管理
  68. * @return 结果
  69. */
  70. public int updateTStaffmgr(TStaffmgr tStaffmgr);
  71. /**
  72. * 批量删除人员管理
  73. *
  74. * @param ids 需要删除的人员管理ID
  75. * @return 结果
  76. */
  77. public int deleteTStaffmgrByIds(Long[] ids);
  78. /**
  79. * 删除人员管理信息
  80. *
  81. * @param id 人员管理ID
  82. * @return 结果
  83. */
  84. public int deleteTStaffmgrById(Long id);
  85. public int deleteLeftTStaffmgrByIds(Long ids);
  86. List<TStaffmgr> selectLeftTStaffmgrList(TStaffmgr tStaffmgr);
  87. int reLeftTStaffmgrByIds(Long id);
  88. }