|
|
@ -5,6 +5,12 @@ import lombok.Data;
|
|
|
|
|
|
|
|
|
|
|
|
@Data
|
|
|
|
@Data
|
|
|
|
public class RuleDetailModel {
|
|
|
|
public class RuleDetailModel {
|
|
|
|
|
|
|
|
@ApiParam(value ="主执行进度")
|
|
|
|
|
|
|
|
private Integer mainProcess = 0;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@ApiParam(value ="总规则数")
|
|
|
|
|
|
|
|
private Integer mainSize = 0;
|
|
|
|
|
|
|
|
|
|
|
|
@ApiParam(value ="当前执行进度")
|
|
|
|
@ApiParam(value ="当前执行进度")
|
|
|
|
private Integer curProcess = 0;
|
|
|
|
private Integer curProcess = 0;
|
|
|
|
|
|
|
|
|
|
|
@ -14,8 +20,15 @@ public class RuleDetailModel {
|
|
|
|
@ApiParam(value ="进度消息")
|
|
|
|
@ApiParam(value ="进度消息")
|
|
|
|
private String processMsg = "";
|
|
|
|
private String processMsg = "";
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@ApiParam(value ="进度消息明细")
|
|
|
|
|
|
|
|
private String subMsg = "";
|
|
|
|
|
|
|
|
|
|
|
|
private Boolean finish = false;
|
|
|
|
private Boolean finish = false;
|
|
|
|
|
|
|
|
|
|
|
|
@ApiParam(value ="异常消息")
|
|
|
|
@ApiParam(value ="异常消息")
|
|
|
|
private String exception = "";
|
|
|
|
private String exception = "";
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public void addProcess() {
|
|
|
|
|
|
|
|
this.curProcess += 1;
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|