|
@@ -2,6 +2,7 @@ package com.qmth.distributed.print.business.bean.dto;
|
|
|
|
|
|
import com.fasterxml.jackson.databind.annotation.JsonSerialize;
|
|
|
import com.fasterxml.jackson.databind.ser.std.ToStringSerializer;
|
|
|
+import com.qmth.distributed.print.business.enums.FlowJoinTypeEnum;
|
|
|
import com.qmth.teachcloud.common.bean.dto.BlurryUserDto;
|
|
|
import com.qmth.teachcloud.common.enums.ExamModelEnum;
|
|
|
import com.qmth.teachcloud.common.enums.FlowStatusEnum;
|
|
@@ -64,6 +65,28 @@ public class ExamTaskDto {
|
|
|
@ApiModelProperty(value = "考试模式")
|
|
|
private ExamModelEnum examModel;
|
|
|
|
|
|
+ @ApiModelProperty(value = "审批次数")
|
|
|
+ private Integer approveCount;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "流程类型")
|
|
|
+ private FlowJoinTypeEnum flowType;
|
|
|
+
|
|
|
+ public Integer getApproveCount() {
|
|
|
+ return approveCount;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setApproveCount(Integer approveCount) {
|
|
|
+ this.approveCount = approveCount;
|
|
|
+ }
|
|
|
+
|
|
|
+ public FlowJoinTypeEnum getFlowType() {
|
|
|
+ return flowType;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setFlowType(FlowJoinTypeEnum flowType) {
|
|
|
+ this.flowType = flowType;
|
|
|
+ }
|
|
|
+
|
|
|
public Boolean getApproveFormStatus() {
|
|
|
return approveFormStatus;
|
|
|
}
|