xyc
2025-02-21 664db98c9e8595ce4dd636a27f480e3a08b81ff5
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
32
33
34
package com.zt.modules.workflowconfig.dao;
 
import com.zt.common.dao.BaseDao;
import com.zt.modules.workflowconfig.model.WfDef;
import com.zt.modules.workflowconfig.model.WfDefStep;
import org.apache.ibatis.annotations.Mapper;
import org.apache.ibatis.annotations.Param;
 
import java.util.List;
import java.util.Map;
 
@Mapper
public interface WfDefDao extends BaseDao<WfDef> {
 
    int listWfdef(Long id);
 
    int listWfdefcode(String code);
 
    List<WfDef> wfDefList(Map<String, Object> params);
 
 
    public List<WfDef> queryWfDef(@Param("wfDefId") Long wfDefId, @Param("wfDefCode") String wfDefCode);
 
    List<WfDef> getFlowList();
    List<WfDefStep> getFlowStepList(String flowId);
 
    List<WfDef> wfDefList2(Map<String, Object> params);
 
    List<WfDef> getStyleList(Map<String, Object> params);
 
    int getPlanStatus(Long bizId);
 
    int getRoleCount(Long userId, String code);
}