From ef5a518c3e2c1fe41aa60f56ca31ddafa0cb1561 Mon Sep 17 00:00:00 2001 From: guoyuji <guoyujie@ng.com> Date: 星期四, 23 五月 2024 08:32:36 +0800 Subject: [PATCH] 添加产品汇总报表 --- north-glass-erp/src/main/java/com/example/erp/entity/sd/Product.java | 3 +++ 1 files changed, 3 insertions(+), 0 deletions(-) diff --git a/north-glass-erp/src/main/java/com/example/erp/entity/sd/Product.java b/north-glass-erp/src/main/java/com/example/erp/entity/sd/Product.java index 8782d0d..d466aaf 100644 --- a/north-glass-erp/src/main/java/com/example/erp/entity/sd/Product.java +++ b/north-glass-erp/src/main/java/com/example/erp/entity/sd/Product.java @@ -1,6 +1,7 @@ package com.example.erp.entity.sd; import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableField; import com.baomidou.mybatisplus.annotation.TableId; import lombok.Data; @@ -11,6 +12,7 @@ @TableId(type = IdType.AUTO) private Long id; private String productName; + private String typeId; private String typeName; private Double totalThickness; private Double thickness; @@ -20,6 +22,7 @@ private String creator; private LocalDate createTime; private LocalDate updateTime; + @TableField(select = false) private BasicGlassType basicGlassType; } -- Gitblit v1.8.0