From d6011fd37ef2ff794d8efa93932bdf98d8f76dda Mon Sep 17 00:00:00 2001 From: guyue <1721849008@qq.com> Date: 星期四, 10 七月 2025 21:26:55 +0800 Subject: [PATCH] 资源判断 --- src/main/java/com/linghu/model/dto/KeywordDto.java | 10 ++++++++-- 1 files changed, 8 insertions(+), 2 deletions(-) diff --git a/src/main/java/com/linghu/model/dto/KeywordDto.java b/src/main/java/com/linghu/model/dto/KeywordDto.java index a06bdf9..634adc8 100644 --- a/src/main/java/com/linghu/model/dto/KeywordDto.java +++ b/src/main/java/com/linghu/model/dto/KeywordDto.java @@ -1,9 +1,13 @@ package com.linghu.model.dto; - + import lombok.Data; import lombok.EqualsAndHashCode; + +import java.util.List; + import com.linghu.model.entity.Keyword; - +import com.linghu.model.entity.Question; + @EqualsAndHashCode(callSuper = true) @Data public class KeywordDto extends Keyword { @@ -11,4 +15,6 @@ * 提问词列表,用换行符分隔 */ private String questions; + + private List<Question> questionList; } \ No newline at end of file -- Gitblit v1.7.1