|
|
|
@ -48,9 +48,9 @@ public class BfInterceptDetail extends BaseBean {
|
|
|
|
|
@ApiParam(value ="拦截器位置")
|
|
|
|
|
private Integer interceptPosition;
|
|
|
|
|
|
|
|
|
|
public Integer getInterceptPosition() {
|
|
|
|
|
public int getInterceptPositionVal() {
|
|
|
|
|
if(this.interceptPosition == null){
|
|
|
|
|
return null;
|
|
|
|
|
return 0;
|
|
|
|
|
} else {
|
|
|
|
|
return this.interceptPosition.intValue();
|
|
|
|
|
}
|
|
|
|
@ -69,4 +69,22 @@ public class BfInterceptDetail extends BaseBean {
|
|
|
|
|
@ApiParam(value ="拦截器业务结果处理")
|
|
|
|
|
private Integer interceptProcessResult;
|
|
|
|
|
|
|
|
|
|
public int getInterceptProcessResultVal(){
|
|
|
|
|
if(interceptProcessResult == null ){
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
return interceptProcessResult.intValue();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Column(name="INTERCEPT_EXECUTE_SORT")
|
|
|
|
|
@ApiParam(value ="拦截器业务执行顺序")
|
|
|
|
|
private Integer interceptExecuteSort;
|
|
|
|
|
|
|
|
|
|
public int getInterceptExecuteSortVal(){
|
|
|
|
|
if(interceptExecuteSort == null ){
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
return interceptExecuteSort.intValue();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|