|
|
|
@ -48,7 +48,7 @@ public class BsSuitCase extends BaseBean {
|
|
|
|
|
if(caseTypeId == null) {
|
|
|
|
|
return -1;
|
|
|
|
|
}
|
|
|
|
|
return caseTypeId.intValue();
|
|
|
|
|
return caseTypeId;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public String getCaseTypeTxt() {
|
|
|
|
@ -69,7 +69,7 @@ public class BsSuitCase extends BaseBean {
|
|
|
|
|
if(suitTypeId == null){
|
|
|
|
|
return -1;
|
|
|
|
|
}
|
|
|
|
|
return suitTypeId.longValue();
|
|
|
|
|
return suitTypeId;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Column(name = "SUIT_TYPE_NAME_RDD")
|
|
|
|
@ -109,7 +109,7 @@ public class BsSuitCase extends BaseBean {
|
|
|
|
|
if(isNeedCertification==null){
|
|
|
|
|
return CommonEnumUtil.TRUE_OR_FALSE.FALSE.getValue();
|
|
|
|
|
}
|
|
|
|
|
return isNeedCertification.intValue();
|
|
|
|
|
return isNeedCertification;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Column(name = "IS_SAVE_EMPTY_MSG")
|
|
|
|
@ -250,6 +250,22 @@ public class BsSuitCase extends BaseBean {
|
|
|
|
|
@ApiParam(value = "绑定业务脚本Code")
|
|
|
|
|
private String bindBusiScriptCode;
|
|
|
|
|
|
|
|
|
|
@Column(name = "IS_SUPPORT_RETRY")
|
|
|
|
|
@ApiParam(value = "是否支持重试")
|
|
|
|
|
private Integer isSupportRetry;
|
|
|
|
|
|
|
|
|
|
public int getIsSupportRetryVal() {
|
|
|
|
|
return isSupportRetry == null ? CommonEnumUtil.TRUE_OR_FALSE.FALSE.getValue() : isSupportRetry;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Column(name = "RETRY_INTERVAL")
|
|
|
|
|
@ApiParam(value = "重试间隔(s)")
|
|
|
|
|
private Integer retryInterval;
|
|
|
|
|
|
|
|
|
|
public int getRetryIntervalVal() {
|
|
|
|
|
return isSupportRetry == null ? 10: isSupportRetry;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Transient
|
|
|
|
|
@ApiParam(value = "适配器套件明细")
|
|
|
|
|
private Object bsSuitCaseDetail;
|
|
|
|
|