From 28231163c688c379a688ce6878a1126ee218aa52 Mon Sep 17 00:00:00 2001 From: huangzhen <867217663@qq.com> Date: 星期二, 26 九月 2023 16:53:48 +0800 Subject: [PATCH] 煤矿功能 --- exam-system/src/main/java/com/gkhy/exam/coalmine/model/dto/resp/AttachmentInfoRespDTO.java | 22 ++++++++++++++++++++++ 1 files changed, 22 insertions(+), 0 deletions(-) diff --git a/exam-system/src/main/java/com/gkhy/exam/coalmine/model/dto/resp/AttachmentInfoRespDTO.java b/exam-system/src/main/java/com/gkhy/exam/coalmine/model/dto/resp/AttachmentInfoRespDTO.java new file mode 100644 index 0000000..cb07fc3 --- /dev/null +++ b/exam-system/src/main/java/com/gkhy/exam/coalmine/model/dto/resp/AttachmentInfoRespDTO.java @@ -0,0 +1,22 @@ +package com.gkhy.exam.coalmine.model.dto.resp; + +import lombok.Data; + +import java.io.Serializable; + +/** + * @email 1603559716@qq.com + * @author: zf + * @date: 2023/5/6 + * @time: 14:54 + */ +@Data +public class AttachmentInfoRespDTO implements Serializable { + + private Long id; + + private String fileUrl; + + private String fileName; + +} -- Gitblit v1.9.2