From 1cdb6459f1e05b23f15920fe90aad5e6e7f1d061 Mon Sep 17 00:00:00 2001 From: xiangpei <xiangpei@timesnew.cn> Date: 星期三, 19 二月 2025 14:06:16 +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