IWfTextbookRecedeService.java 751 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. package com.xjrsoft.module.textbook.service;
  2. import com.github.yulichang.base.MPJBaseService;
  3. import com.xjrsoft.module.textbook.entity.WfTextbookRecede;
  4. import java.util.List;
  5. /**
  6. * @title: 推书申请
  7. * @Author szs
  8. * @Date: 2024-01-03
  9. * @Version 1.0
  10. */
  11. public interface IWfTextbookRecedeService extends MPJBaseService<WfTextbookRecede> {
  12. /**
  13. * 新增
  14. *
  15. * @param wfTextbookRecede
  16. * @return
  17. */
  18. Boolean add(WfTextbookRecede wfTextbookRecede);
  19. /**
  20. * 更新
  21. *
  22. * @param wfTextbookRecede
  23. * @return
  24. */
  25. Boolean update(WfTextbookRecede wfTextbookRecede);
  26. /**
  27. * 删除
  28. *
  29. * @param ids
  30. * @return
  31. */
  32. Boolean delete(List<Long> ids);
  33. Boolean dataHandle(Long formId);
  34. }