From 820224c80bb64721df20f52fcb5c388a991e83b0 Mon Sep 17 00:00:00 2001 From: lxw <810412026@qq.com> Date: 星期三, 10 八月 2022 09:24:22 +0800 Subject: [PATCH] 产品管理查询信息时要显示替换件以及以前存在的关联关系 --- src/main/java/com/whyc/pojo/ProductBom.java | 13 +++++++++++++ 1 files changed, 13 insertions(+), 0 deletions(-) diff --git a/src/main/java/com/whyc/pojo/ProductBom.java b/src/main/java/com/whyc/pojo/ProductBom.java index a94d3f3..7724302 100644 --- a/src/main/java/com/whyc/pojo/ProductBom.java +++ b/src/main/java/com/whyc/pojo/ProductBom.java @@ -70,6 +70,11 @@ @TableField(exist = false) private List<Component> components; + @TableField(exist = false) + @ApiModelProperty("鏄惁鏄浛鎹欢锛�0锛氬師瀛愪欢锛�1锛氭浛鎹欢") + private int replaceStatus; + + public Integer getId() { return id; } @@ -277,4 +282,12 @@ public void setComponents(List<Component> components) { this.components = components; } + + public int getReplaceStatus() { + return replaceStatus; + } + + public void setReplaceStatus(int replaceStatus) { + this.replaceStatus = replaceStatus; + } } -- Gitblit v1.9.1