郑永安
2023-06-19 7a6abd05683528032687c75e80e0bd2030a3e46c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
package com.gkhy.safePlatform.specialWork.service;
 
import com.gkhy.safePlatform.commons.co.ContextCacheUser;
import com.gkhy.safePlatform.specialWork.enums.ProcessOperationEnum;
import com.gkhy.safePlatform.specialWork.model.dto.resp.WorkApplyRecordRespDTO;
import com.gkhy.safePlatform.specialWork.model.query.WorkApplyRecordListQuery;
import org.springframework.transaction.annotation.Propagation;
import org.springframework.transaction.annotation.Transactional;
 
import java.util.List;
 
public interface WorkApplyRecordService {
 
    /**
     * @Description: 操作人日志
     */
    void log(ContextCacheUser user, ProcessOperationEnum operation, Long workApplyId, Long currentStepId, String currentStepName, String content);
 
 
    /**
     * @Description: 系统自动驳回等日志
     */
    void log(ProcessOperationEnum operationEnum, Long workApplyId, Long currentStepId, String currentStepName, String content);
 
 
    /**
     * @Description: 查询
     */
    List<WorkApplyRecordRespDTO> list(ContextCacheUser currentUser, WorkApplyRecordListQuery query);
 
}