From 6ceedb1824b237e9ade52e08542aaf7c64fd063d Mon Sep 17 00:00:00 2001 From: yss <17921@qq.com> Date: Thu, 23 Nov 2023 11:09:14 +0800 Subject: [PATCH] =?UTF-8?q?=E6=8A=A5=E4=BB=B7=E7=BB=93=E6=9E=84=E5=8C=96?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../mall/ebtp/project/projectsection/entity/ProjectSection.java | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/main/java/com/chinaunicom/mall/ebtp/project/projectsection/entity/ProjectSection.java b/src/main/java/com/chinaunicom/mall/ebtp/project/projectsection/entity/ProjectSection.java index 1e09371..0f34e2b 100644 --- a/src/main/java/com/chinaunicom/mall/ebtp/project/projectsection/entity/ProjectSection.java +++ b/src/main/java/com/chinaunicom/mall/ebtp/project/projectsection/entity/ProjectSection.java @@ -263,12 +263,14 @@ public class ProjectSection extends BaseEntity implements Serializable { @ApiModelProperty(value = "中标/中选人数量是否明确 0否;1是") private String bidNumberIsDefinite; + @TableField(exist = false) @ApiModelProperty(value = "中标/中选分配比例") private List projBidRatioInfoVoList = new ArrayList<>(); @ApiModelProperty(value = "中标/中选人数量") private Integer bidDefiniteNumber; + @TableField(exist = false) @ApiModelProperty(value = "物料信息") private List materialList = new ArrayList<>(); }