PEUserFlowService.java 589 B

12345678910111213141516171819202122232425262728293031
  1. package com.ghsc.partybuild.service;
  2. import java.util.Date;
  3. /**
  4. * 发展党员步骤
  5. *
  6. * @author pj
  7. */
  8. public interface PEUserFlowService {
  9. /**
  10. * 添加进度操作记录
  11. * @param joinUserId
  12. * @param flowId
  13. * @param accomplishtime
  14. * @param userId
  15. * @param userName
  16. * @return
  17. */
  18. int addUserFlow(String joinUserId, String flowId, Date accomplishtime, String userId, String userName);
  19. /**
  20. * 删除进度操作记录
  21. * @param joinUserId
  22. * @param flowId
  23. * @return
  24. */
  25. int delUserFlow(String joinUserId, String flowId);
  26. }