From 6f3e3bd0727e9051834bd5c1453dae54305fc3ac Mon Sep 17 00:00:00 2001 From: fengyuan_yang <1976974459@qq.com> Date: Wed, 2 Sep 2026 10:20:09 +0800 Subject: [PATCH] =?UTF-8?q?2026-09-02=20=E7=89=A9=E6=96=99=E5=88=86?= =?UTF-8?q?=E7=B1=BB=E7=AE=A1=E7=90=86=E5=92=8C=E7=89=A9=E6=96=99=E5=88=86?= =?UTF-8?q?=E7=BB=84=E7=AE=A1=E7=90=86=E9=A1=B5=E9=9D=A2=EF=BC=8C=E4=BC=98?= =?UTF-8?q?=E5=8C=96=E6=98=AF=E5=90=A6=E6=98=BE=E7=A4=BA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../modules/part/entity/PartFamilyInformationEntity.java | 5 +++++ .../modules/part/entity/PartGroupInformationEntity.java | 5 +++++ .../resources/mapper/part/PartFamilyInformationMapper.xml | 1 + .../resources/mapper/part/PartGroupInformationMapper.xml | 1 + 4 files changed, 12 insertions(+) diff --git a/src/main/java/com/spring/modules/part/entity/PartFamilyInformationEntity.java b/src/main/java/com/spring/modules/part/entity/PartFamilyInformationEntity.java index 3fcf3aa1..db627c9a 100644 --- a/src/main/java/com/spring/modules/part/entity/PartFamilyInformationEntity.java +++ b/src/main/java/com/spring/modules/part/entity/PartFamilyInformationEntity.java @@ -50,6 +50,11 @@ public class PartFamilyInformationEntity extends QueryPage implements Serializab * 更新人 **/ private String updateBy; + + /** + * 是否显示 + **/ + private String showInQueryFlag; /** * 数据集 */ diff --git a/src/main/java/com/spring/modules/part/entity/PartGroupInformationEntity.java b/src/main/java/com/spring/modules/part/entity/PartGroupInformationEntity.java index 6bc5cf50..a2328f8a 100644 --- a/src/main/java/com/spring/modules/part/entity/PartGroupInformationEntity.java +++ b/src/main/java/com/spring/modules/part/entity/PartGroupInformationEntity.java @@ -49,6 +49,11 @@ public class PartGroupInformationEntity extends QueryPage implements Serializabl * 更新人 **/ private String updateBy; + + /** + * 是否显示 + **/ + private String showInQueryFlag; /** * 数据集 */ diff --git a/src/main/resources/mapper/part/PartFamilyInformationMapper.xml b/src/main/resources/mapper/part/PartFamilyInformationMapper.xml index 0f6e50fb..b700567e 100644 --- a/src/main/resources/mapper/part/PartFamilyInformationMapper.xml +++ b/src/main/resources/mapper/part/PartFamilyInformationMapper.xml @@ -9,6 +9,7 @@ family_id, family_name, active, + show_in_query_flag, create_by, create_date, update_by, diff --git a/src/main/resources/mapper/part/PartGroupInformationMapper.xml b/src/main/resources/mapper/part/PartGroupInformationMapper.xml index d32b2cfe..3d835d64 100644 --- a/src/main/resources/mapper/part/PartGroupInformationMapper.xml +++ b/src/main/resources/mapper/part/PartGroupInformationMapper.xml @@ -9,6 +9,7 @@ group_id, group_name, active, + show_in_query_flag, create_by, create_date, update_by,