12345678910111213141516171819202122232425262728293031 |
- package com.ghsc.partybuild.service;
- import java.util.Date;
- /**
- * 发展党员步骤
- *
- * @author pj
- */
- public interface PEUserFlowService {
- /**
- * 添加进度操作记录
- * @param joinUserId
- * @param flowId
- * @param accomplishtime
- * @param userId
- * @param userName
- * @return
- */
- int addUserFlow(String joinUserId, String flowId, Date accomplishtime, String userId, String userName);
- /**
- * 删除进度操作记录
- * @param joinUserId
- * @param flowId
- * @return
- */
- int delUserFlow(String joinUserId, String flowId);
- }
|