From fcf045ede0edaba183c4e24100a89ef88a0783a1 Mon Sep 17 00:00:00 2001 From: "zhang.xw" Date: Thu, 9 Feb 2023 13:35:23 +0800 Subject: [PATCH] =?UTF-8?q?=E6=96=B0=E5=A2=9E?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../cn/estsh/i3plus/pojo/softswitch/bean/BsSuitCaseFTP.java | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/modules/i3plus-pojo-softswitch/src/main/java/cn/estsh/i3plus/pojo/softswitch/bean/BsSuitCaseFTP.java b/modules/i3plus-pojo-softswitch/src/main/java/cn/estsh/i3plus/pojo/softswitch/bean/BsSuitCaseFTP.java index 1945d75..2ccf4b7 100644 --- a/modules/i3plus-pojo-softswitch/src/main/java/cn/estsh/i3plus/pojo/softswitch/bean/BsSuitCaseFTP.java +++ b/modules/i3plus-pojo-softswitch/src/main/java/cn/estsh/i3plus/pojo/softswitch/bean/BsSuitCaseFTP.java @@ -92,6 +92,18 @@ public class BsSuitCaseFTP extends BaseBean { public boolean isReadAndDelete() { return CommonEnumUtil.TRUE_OR_FALSE.valueOfBoolean(isReadAndDelete); } + @ColumnDefault("2") + @Column(name = "IS_READ_AND_RETREAT") + @ApiParam(value = "读取并归档") + private Integer isReadAndRetreat = 2; + + public boolean isReadAndRetreat() { + return CommonEnumUtil.TRUE_OR_FALSE.valueOfBoolean(isReadAndRetreat); + } + + @Column(name = "RETREAT_FILE_PATH") + @ApiParam(value = "校验文件路径") + private String retreatFilePath; @Column(name = "IS_NEED_TRAVERSAL") @ApiParam(value = "是否需要遍历")