diff --git a/src/main/java/com/cultural/heritage/service/good/impl/GoodServiceImpl.java b/src/main/java/com/cultural/heritage/service/good/impl/GoodServiceImpl.java index 2e84d68..6afaf86 100644 --- a/src/main/java/com/cultural/heritage/service/good/impl/GoodServiceImpl.java +++ b/src/main/java/com/cultural/heritage/service/good/impl/GoodServiceImpl.java @@ -73,7 +73,7 @@ public class GoodServiceImpl extends ServiceImpl implements Go if (!isServiceGood){ isGoodType = 1; queryWrapper.like(StringUtils.isNotBlank(type), "type", type); - queryWrapper.eq(StringUtils.isNotBlank(festivalName), "festivalOrder", festivalName); + queryWrapper.eq(StringUtils.isNotBlank(festivalName), "festivalName", festivalName); } queryWrapper.eq(ObjectUtils.isNotEmpty(isShelves), "isShelves", isShelves); queryWrapper.eq(ObjectUtils.isNotEmpty(isGoodType), "isGoodType", isGoodType); diff --git a/src/main/resources/application.yml b/src/main/resources/application.yml index c8a9dd1..4d2085f 100644 --- a/src/main/resources/application.yml +++ b/src/main/resources/application.yml @@ -94,8 +94,8 @@ mybatis-plus: mapper-locations: classpath:mapper/*.xml configuration: map-underscore-to-camel-case: false - log-impl: org.apache.ibatis.logging.nologging.NoLoggingImpl - # log-impl: org.apache.ibatis.logging.stdout.StdOutImpl +# log-impl: org.apache.ibatis.logging.nologging.NoLoggingImpl + log-impl: org.apache.ibatis.logging.stdout.StdOutImpl global-config: db-config: logic-delete-field: isDelete #全局逻辑删除的实体字段名 diff --git a/src/main/resources/lib/2020idea-mybatis_log_plugin.jar b/src/main/resources/lib/2020idea-mybatis_log_plugin.jar new file mode 100644 index 0000000..5bf63c6 Binary files /dev/null and b/src/main/resources/lib/2020idea-mybatis_log_plugin.jar differ