From 1a805505257bc7f962e7ca07077e6acf39aff804 Mon Sep 17 00:00:00 2001 From: xiangpei <xiangpei@timesnew.cn> Date: 星期一, 17 二月 2025 18:03:08 +0800 Subject: [PATCH] 临时导入项目接口完善 --- business/src/main/java/com/ycl/domain/vo/ProjectPlanResponseVO.java | 12 +++++++----- 1 files changed, 7 insertions(+), 5 deletions(-) diff --git a/business/src/main/java/com/ycl/domain/vo/ProjectPlanResponseVO.java b/business/src/main/java/com/ycl/domain/vo/ProjectPlanResponseVO.java index b12c748..ad4aeb1 100644 --- a/business/src/main/java/com/ycl/domain/vo/ProjectPlanResponseVO.java +++ b/business/src/main/java/com/ycl/domain/vo/ProjectPlanResponseVO.java @@ -8,15 +8,17 @@ @AllArgsConstructor @NoArgsConstructor public class ProjectPlanResponseVO { - private Integer id; + private Long id; private String projectName; private Integer reportStatus; private String projectCode; - private Integer projectType; - private Integer projectPhase; + private String projectType; + private String projectPhase; private Integer monthStatus; private Integer seasonStatus; private Integer yearStatus; - private Integer projectStatus; - private Integer investType; + private String projectStatus; + private String investType; + private String projectColorCode; + private Integer exception; } -- Gitblit v1.8.0