From 45c87076c51559b678a1ceba5400ca00ee607a40 Mon Sep 17 00:00:00 2001 From: wangliwen Date: Thu, 5 May 2022 10:56:35 +0800 Subject: [PATCH] =?UTF-8?q?=E8=83=BD=E5=8A=9B=E4=B8=8A=E6=9E=B6=E7=94=B3?= =?UTF-8?q?=E8=AF=B7=20=E5=A2=9E=E5=8A=A0=E9=99=84=E4=BB=B6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../resourceMountApply/dto/TResourceBatchMountApplyDTO.java | 3 +++ .../resourceMountApply/dto/TResourceMountApplyDTO.java | 3 +++ .../resourceMountApply/entity/TResourceMountApplyEntity.java | 5 +++++ 3 files changed, 11 insertions(+) diff --git a/renren-admin/src/main/java/io/renren/modules/resourceMountApply/dto/TResourceBatchMountApplyDTO.java b/renren-admin/src/main/java/io/renren/modules/resourceMountApply/dto/TResourceBatchMountApplyDTO.java index 22cd8853..de21eb36 100644 --- a/renren-admin/src/main/java/io/renren/modules/resourceMountApply/dto/TResourceBatchMountApplyDTO.java +++ b/renren-admin/src/main/java/io/renren/modules/resourceMountApply/dto/TResourceBatchMountApplyDTO.java @@ -33,4 +33,7 @@ public class TResourceBatchMountApplyDTO implements Serializable { @ApiModelProperty(value = "资源信息的信息") private List resourceDTO; + @ApiModelProperty(value = "附件") + private String enclosure; + } diff --git a/renren-admin/src/main/java/io/renren/modules/resourceMountApply/dto/TResourceMountApplyDTO.java b/renren-admin/src/main/java/io/renren/modules/resourceMountApply/dto/TResourceMountApplyDTO.java index 7de9393f..f27c946a 100644 --- a/renren-admin/src/main/java/io/renren/modules/resourceMountApply/dto/TResourceMountApplyDTO.java +++ b/renren-admin/src/main/java/io/renren/modules/resourceMountApply/dto/TResourceMountApplyDTO.java @@ -40,6 +40,9 @@ public class TResourceMountApplyDTO implements Serializable { @ApiModelProperty(value = "申请的资源信息") private ResourceDTO resourceDTO; + @ApiModelProperty(value = "附件") + private String enclosure; + public ResourceDTO getResourceDTO() { if (this.parameterContent != null) { return JSON.parseObject(this.parameterContent, ResourceDTO.class); diff --git a/renren-admin/src/main/java/io/renren/modules/resourceMountApply/entity/TResourceMountApplyEntity.java b/renren-admin/src/main/java/io/renren/modules/resourceMountApply/entity/TResourceMountApplyEntity.java index 77796df4..91d5bd00 100644 --- a/renren-admin/src/main/java/io/renren/modules/resourceMountApply/entity/TResourceMountApplyEntity.java +++ b/renren-admin/src/main/java/io/renren/modules/resourceMountApply/entity/TResourceMountApplyEntity.java @@ -52,4 +52,9 @@ public class TResourceMountApplyEntity extends BaseEntity { * 参数内容 md5 */ private String parameterContentMd5; + + /** + * 附件 + */ + private String enclosure; } \ No newline at end of file