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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
package com.vci.dto;
 
/**
 * 流程启动相关的配置
 * @author weidy
 * @date 2021-2-12
 */
public class ProcessStartConfigDTO implements java.io.Serializable{
 
    /**
     * 序列化
     */
    private static final long serialVersionUID = 3749032313326035791L;
    
    /**
     * 流程部署的id
     */
    private String deployId;
    
    /**
     * 流程的名称
     */
    private String title;
    
    /**
     * 流程描述
     */
    private String description;
    
    /**
     * 数据所属业务类型
     */
    private String btmType;
    
    /**
     * 数据的主键    
     */
    private String oids;
 
    /**
     * 所有的数据当中的最大密级,如果该业务数据没有密级字段,则值为-1
     */
    private int maxSecret;
    
    /**
     * 显示数据列表的方式
     */
    private String dataShowType;
    
    /**
     * 自定义显示表格的定义
     */
    private String customTableDefine;
    
    /**
     * 显示数据的表格编码
     */
    private String tableDefineCode;
 
    /**
     * 显示流程详细信息的路径
     */
    private String detailInfoUrl;
 
    /**
     * 页面显示的所属业务类型,默认等于数据的业务类型
     */
    private String uiType;
 
    /**
     * UI的展示业务类型
     */
    private String content;
    
    /**
     * 是否发起多个流程
     */
    private boolean isMutiProcess = false;
    
    /**
     * 是否自动提交第一个节点
     */
    private boolean autoSubmitFirst = true;
 
    /**
     * 终止的时候转换转态
     */
    private String resetStatus;
 
    /**
     * 开始流程后的状态
     */
    private String startStatus;
 
    /**
     * 流程执行完毕后的状态
     */
    private String releaseStatus;
 
    public String getUiType() {
        return uiType;
    }
 
    public void setUiType(String uiType) {
        this.uiType = uiType;
    }
 
    public String getStartStatus() {
        return startStatus;
    }
 
    public void setStartStatus(String startStatus) {
        this.startStatus = startStatus;
    }
 
    public String getReleaseStatus() {
        return releaseStatus;
    }
 
    public void setReleaseStatus(String releaseStatus) {
        this.releaseStatus = releaseStatus;
    }
 
    public String getDeployId() {
        return deployId;
    }
 
    public void setDeployId(String deployId) {
        this.deployId = deployId;
    }
 
    public String getTitle() {
        return title;
    }
 
    public void setTitle(String title) {
        this.title = title;
    }
 
    public String getBtmType() {
        return btmType;
    }
 
    public void setBtmType(String btmType) {
        this.btmType = btmType;
    }
 
    public String getOids() {
        return oids;
    }
 
    public void setOids(String oids) {
        this.oids = oids;
    }
 
    public String getDataShowType() {
        return dataShowType;
    }
 
    public void setDataShowType(String dataShowType) {
        this.dataShowType = dataShowType;
    }
 
    public String getCustomTableDefine() {
        return customTableDefine;
    }
 
    public void setCustomTableDefine(String customTableDefine) {
        this.customTableDefine = customTableDefine;
    }
 
    public String getTableDefineCode() {
        return tableDefineCode;
    }
 
    public void setTableDefineCode(String tableDefineCode) {
        this.tableDefineCode = tableDefineCode;
    }
 
    public boolean isMutiProcess() {
        return isMutiProcess;
    }
 
    public void setMutiProcess(boolean isMutiProcess) {
        this.isMutiProcess = isMutiProcess;
    }
 
    public String getDescription() {
        return description;
    }
 
    public void setDescription(String description) {
        this.description = description;
    }
 
    public int getMaxSecret() {
        return maxSecret;
    }
 
    public void setMaxSecret(int maxSecret) {
        this.maxSecret = maxSecret;
    }
 
    public String getDetailInfoUrl() {
        return detailInfoUrl;
    }
 
    public void setDetailInfoUrl(String detailInfoUrl) {
        this.detailInfoUrl = detailInfoUrl;
    }
 
    public boolean isAutoSubmitFirst() {
        return autoSubmitFirst;
    }
 
    public void setAutoSubmitFirst(boolean autoSubmitFirst) {
        this.autoSubmitFirst = autoSubmitFirst;
    }
 
    public String getContent() {
        return content;
    }
 
    public void setContent(String content) {
        this.content = content;
    }
 
 
    public String getResetStatus() {
        return resetStatus;
    }
 
    public void setResetStatus(String resetStatus) {
        this.resetStatus = resetStatus;
    }
 
 
 
    @Override
    public String toString() {
        return "ProcessStartConfigDTO{" +
                "deployId='" + deployId + '\'' +
                ", title='" + title + '\'' +
                ", description='" + description + '\'' +
                ", btmType='" + btmType + '\'' +
                ", oids='" + oids + '\'' +
                ", maxSecret=" + maxSecret +
                ", dataShowType='" + dataShowType + '\'' +
                ", customTableDefine='" + customTableDefine + '\'' +
                ", tableDefineCode='" + tableDefineCode + '\'' +
                ", detailInfoUrl='" + detailInfoUrl + '\'' +
                ", uiType='" + uiType + '\'' +
                ", content='" + content + '\'' +
                ", isMutiProcess=" + isMutiProcess +
                ", autoSubmitFirst=" + autoSubmitFirst +
                ", resetStatus='" + resetStatus + '\'' +
                ", startStatus='" + startStatus + '\'' +
                ", releaseStatus='" + releaseStatus + '\'' +
                '}';
    }
}