|
|
|
@ -98,6 +98,18 @@ public class BsSuitCaseFTP extends BaseBean {
|
|
|
|
|
return CommonEnumUtil.TRUE_OR_FALSE.valueOfBoolean(isIncrementalRead);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Column(name = "IS_INCREMENTAL_WRITE")
|
|
|
|
|
@ApiParam(value = "是否增量写入")
|
|
|
|
|
private Integer isIncrementalWrite;
|
|
|
|
|
|
|
|
|
|
public int getIsIncrementalWriteVal(){
|
|
|
|
|
return isIncrementalWrite == null ? CommonEnumUtil.TRUE_OR_FALSE.FALSE.getValue() : isIncrementalWrite;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public boolean isIncrementalWrite() {
|
|
|
|
|
return CommonEnumUtil.TRUE_OR_FALSE.valueOfBoolean(getIsIncrementalWriteVal());
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Transient
|
|
|
|
|
@ApiParam(value = "临时适配路径")
|
|
|
|
|
private String tempSuitFilePath;
|
|
|
|
|