|
|
|
@ -1,6 +1,7 @@
|
|
|
|
|
package cn.estsh.i3plus.pojo.softswitch.bean;
|
|
|
|
|
|
|
|
|
|
import cn.estsh.i3plus.pojo.base.bean.BaseBean;
|
|
|
|
|
import cn.estsh.i3plus.pojo.base.enumutil.CommonEnumUtil;
|
|
|
|
|
import com.fasterxml.jackson.databind.annotation.JsonSerialize;
|
|
|
|
|
import com.fasterxml.jackson.databind.ser.std.ToStringSerializer;
|
|
|
|
|
import io.swagger.annotations.Api;
|
|
|
|
@ -12,6 +13,8 @@ import org.hibernate.annotations.DynamicUpdate;
|
|
|
|
|
import javax.persistence.Column;
|
|
|
|
|
import javax.persistence.Entity;
|
|
|
|
|
import javax.persistence.Table;
|
|
|
|
|
import javax.persistence.Transient;
|
|
|
|
|
import java.util.List;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @Description :
|
|
|
|
@ -46,16 +49,40 @@ public class BsSuitCaseFTP extends BaseBean {
|
|
|
|
|
@ApiParam(value = "读取并清空")
|
|
|
|
|
private Integer isReadAndEmpty;
|
|
|
|
|
|
|
|
|
|
public boolean isReadAndEmpty(){
|
|
|
|
|
return CommonEnumUtil.TRUE_OR_FALSE.valueOfBoolean(isReadAndEmpty);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Column(name = "IS_READ_AND_DELETE")
|
|
|
|
|
@ApiParam(value = "读取并删除")
|
|
|
|
|
private Integer isReadAndDelete;
|
|
|
|
|
|
|
|
|
|
public boolean isReadAndDelete(){
|
|
|
|
|
return CommonEnumUtil.TRUE_OR_FALSE.valueOfBoolean(isReadAndDelete);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Column(name = "IS_NEED_TRAVERSAL")
|
|
|
|
|
@ApiParam(value = "是否需要遍历")
|
|
|
|
|
private Integer isNeedTraversal;
|
|
|
|
|
|
|
|
|
|
public boolean isNeedTraversal(){
|
|
|
|
|
return CommonEnumUtil.TRUE_OR_FALSE.valueOfBoolean(isNeedTraversal);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Column(name = "IS_INCREMENTAL_READ")
|
|
|
|
|
@ApiParam(value = "是否增量读取")
|
|
|
|
|
private Integer isIncrementalRead;
|
|
|
|
|
|
|
|
|
|
public boolean isIncrementalRead(){
|
|
|
|
|
return CommonEnumUtil.TRUE_OR_FALSE.valueOfBoolean(isIncrementalRead);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Transient
|
|
|
|
|
@ApiParam(value = "是否增量读取")
|
|
|
|
|
private String tempSuitFilePath;
|
|
|
|
|
|
|
|
|
|
@Transient
|
|
|
|
|
@ApiParam(value = "适配文件列表")
|
|
|
|
|
public List<BsSuitFile> bsSuitFileList;
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|