From 040fe24077c6a57fd0b337fd41cec00d9125eb0e Mon Sep 17 00:00:00 2001 From: fuliqi <fuliqi@qq.com> Date: 星期四, 12 十二月 2024 00:58:52 +0800 Subject: [PATCH] 一机一档OSD优化 --- ycl-pojo/src/main/java/com/ycl/platform/domain/dto/ScoreIndexDTO.java | 4 ++++ 1 files changed, 4 insertions(+), 0 deletions(-) diff --git a/ycl-pojo/src/main/java/com/ycl/platform/domain/dto/ScoreIndexDTO.java b/ycl-pojo/src/main/java/com/ycl/platform/domain/dto/ScoreIndexDTO.java index aa15b1c..93dc7c8 100644 --- a/ycl-pojo/src/main/java/com/ycl/platform/domain/dto/ScoreIndexDTO.java +++ b/ycl-pojo/src/main/java/com/ycl/platform/domain/dto/ScoreIndexDTO.java @@ -4,10 +4,14 @@ import lombok.Data; import lombok.experimental.Accessors; +import java.util.List; + @Data @Accessors(chain = true) public class ScoreIndexDTO extends BaseEntity { private String tableName; private Long deptId; private String date; + private Integer examineTag; + private List<String> quarter; } -- Gitblit v1.8.0