wutt 5 gadi atpakaļ
vecāks
revīzija
d82055c83f

+ 2 - 0
fhKeeper/formulahousekeeper/management-platform/src/main/java/com/management/platform/PlatformStartApplication.java

@@ -1,5 +1,6 @@
 package com.management.platform;
 
+import org.mybatis.spring.annotation.MapperScan;
 import org.springframework.boot.SpringApplication;
 import org.springframework.boot.autoconfigure.SpringBootApplication;
 
@@ -10,6 +11,7 @@ import org.springframework.boot.autoconfigure.SpringBootApplication;
  * Version: 1.0
  */
 @SpringBootApplication
+@MapperScan("com.management.platform.mapper")
 public class PlatformStartApplication {
     public static void main(String[] args) {
         SpringApplication.run(PlatformStartApplication.class,args);