添加业务ID字段

This commit is contained in:
2023-11-19 20:36:39 +08:00
parent 52d97712a5
commit eb0cc4b9b7
5 changed files with 14 additions and 0 deletions

View File

@@ -70,6 +70,11 @@
<artifactId>tika-core</artifactId>
<version>2.9.0</version>
</dependency>
<dependency>
<groupId>org.apache.tika</groupId>
<artifactId>tika-parsers-standard-package</artifactId>
<version>2.9.0</version>
</dependency>
<dependency>
<groupId>org.flywaydb</groupId>
<artifactId>flyway-core</artifactId>

View File

@@ -25,4 +25,6 @@ public class CreateFileDto extends OrgCommonDto {
@Comment("局域网访问地址")
private String privateUrl;
@Comment("业务ID")
private String businessId;
}

View File

@@ -25,4 +25,6 @@ public class FileDto extends OrgCommonDto {
@Comment("局域网访问地址")
private String privateUrl;
@Comment("业务ID")
private String businessId;
}

View File

@@ -25,4 +25,6 @@ public class UpdateFileDto extends OrgCommonDto {
@Comment("局域网访问地址")
private String privateUrl;
@Comment("业务ID")
private String businessId;
}

View File

@@ -32,4 +32,7 @@ public class FileEntity extends OrgCommonEntity {
@Comment("对象ID")
private String objectId;
@Comment("业务ID")
private String businessId;
}