| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
 | | package com.zt.modules.workflow.dto; |  |   |  | import lombok.Data; |  |   |  | import java.util.Map; |  | import java.util.ArrayList; |  |   |  | @Data |  | public class QueryWfInfoDto { |  |   |  |     Long wfStepId; |  |     String stepName; |  |     Integer isCounterSign; |  |     Integer canRefuse; |  |     String approverIds; |  |     Integer activeStep; |  |     Integer isMyStep; |  |     Integer isFirstStep; |  |     Integer isFinallyStep; |  |     Map<String,String>[] list; |  | } | 
 |