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,