|
@@ -79,7 +79,7 @@ public class TFFlowLog extends BaseEntity implements Serializable {
|
|
|
insertInfo(userId);
|
|
|
}
|
|
|
|
|
|
- public TFFlowLog(Long schoolId, Long orgId, Long flowId, Long taskId, Long userId, String approveRemark, FlowApproveOperationEnum approveOperation) {
|
|
|
+ public TFFlowLog(Long schoolId, Long orgId, Long flowId, Long taskId, Long userId, String approveRemark, FlowApproveOperationEnum approveOperation, Long approveId, String pendApproveId) {
|
|
|
setId(SystemConstant.getDbUuid());
|
|
|
this.schoolId = schoolId;
|
|
|
this.orgId = orgId;
|
|
@@ -87,6 +87,8 @@ public class TFFlowLog extends BaseEntity implements Serializable {
|
|
|
this.taskId = taskId;
|
|
|
this.approveRemark = approveRemark;
|
|
|
this.approveOperation = approveOperation;
|
|
|
+ this.approveId = approveId;
|
|
|
+ this.pendApproveId = pendApproveId;
|
|
|
insertInfo(userId);
|
|
|
}
|
|
|
|