Skip to content

Commit 4097dc7

Browse files
committed
fix DataType.java
1 parent 893d39b commit 4097dc7

3 files changed

Lines changed: 11 additions & 4 deletions

File tree

flow-engine-framework/src/main/java/com/codingapi/flow/pojo/response/FlowContent.java

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -204,6 +204,7 @@ public void pushRecords(FlowRecord record, List<FlowRecord> mergeRecords) {
204204
Body body = new Body();
205205
body.setRecordId(item.getId());
206206
body.setSubmitOperator(new FlowOperator(item.getSubmitOperatorId(),item.getSubmitOperatorName()));
207+
body.setCreatedOperator(new FlowOperator(record.getCreateOperatorId(),record.getCreateOperatorName()));
207208
body.setTitle(item.getTitle());
208209
body.setData(item.getFormData());
209210
body.setRecordState(item.getRecordState());
@@ -293,13 +294,19 @@ public static class Body {
293294
*/
294295
private String title;
295296

296-
297297
/**
298-
* 提交审批者
298+
* 流程提交人
299299
*/
300300
private FlowOperator submitOperator;
301301

302302

303+
304+
/**
305+
* 流程创建者
306+
*/
307+
private FlowOperator createdOperator;
308+
309+
303310
/**
304311
* 表单数据
305312
*/

0 commit comments

Comments
 (0)