From f6e9623e2add47aea9845982d99388e06d17992e Mon Sep 17 00:00:00 2001 From: liurunyu <lry9898@163.com> Date: 星期二, 23 四月 2024 17:28:20 +0800 Subject: [PATCH] 修改各个模块的****Application的@MapperScan为@MapperScan(basePackages={"com.dy.pmsGlobal.dao*"}) --- pms-parent/pms-web-platform/src/main/java/com/dy/pmsPlatform/PmsPlatformApplication.java | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/pms-parent/pms-web-platform/src/main/java/com/dy/pmsPlatform/PmsPlatformApplication.java b/pms-parent/pms-web-platform/src/main/java/com/dy/pmsPlatform/PmsPlatformApplication.java index ad0ee13..190706b 100644 --- a/pms-parent/pms-web-platform/src/main/java/com/dy/pmsPlatform/PmsPlatformApplication.java +++ b/pms-parent/pms-web-platform/src/main/java/com/dy/pmsPlatform/PmsPlatformApplication.java @@ -9,7 +9,7 @@ @SpringBootApplication @EnableAspectJAutoProxy @ComponentScan(basePackages = {"com.dy.common", "com.dy.pmsGlobal", "com.dy.pmsPlatform"}) -@MapperScan(basePackages={"com.dy.pmsGlobal.daoBa", "com.dy.pmsGlobal.daoPlt"}) +@MapperScan(basePackages={"com.dy.pmsGlobal.dao*"}) public class PmsPlatformApplication { public static void main(String[] args) { -- Gitblit v1.8.0