From f037bcf8bbbe7afdac4775dc12fc08d551b89e36 Mon Sep 17 00:00:00 2001 From: zhc077 <565291854> Date: Fri, 3 Feb 2023 18:02:59 +0800 Subject: [PATCH] =?UTF-8?q?=E9=9D=9E=E8=A1=A8=E5=AD=97=E6=AE=B5=E6=B7=BB?= =?UTF-8?q?=E5=8A=A0=E6=B3=A8=E9=87=8A=202.2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../product/zyproductprocess/entity/ZyProductProcess.java | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/jeecg-boot/jeecg-boot-module-system/src/main/java/org/jeecg/modules/product/zyproductprocess/entity/ZyProductProcess.java b/jeecg-boot/jeecg-boot-module-system/src/main/java/org/jeecg/modules/product/zyproductprocess/entity/ZyProductProcess.java index bef04f79..a2815654 100644 --- a/jeecg-boot/jeecg-boot-module-system/src/main/java/org/jeecg/modules/product/zyproductprocess/entity/ZyProductProcess.java +++ b/jeecg-boot/jeecg-boot-module-system/src/main/java/org/jeecg/modules/product/zyproductprocess/entity/ZyProductProcess.java @@ -7,6 +7,7 @@ import java.io.UnsupportedEncodingException; import java.util.Date; import java.math.BigDecimal; import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableField; import com.baomidou.mybatisplus.annotation.TableId; import com.baomidou.mybatisplus.annotation.TableName; import lombok.Data; @@ -69,6 +70,9 @@ public class ZyProductProcess implements Serializable { @ApiModelProperty(value = "序号") private Integer number; + @TableField(exist = false) private String productCode; + + @TableField(exist = false) private String processCode; }