Complete the corrections of the errors in the last submission.Create the backend code structure
Please enter the commit message for your changes. Lines starting
Change-Id: I3f0c3764560b14466236e66627f34d8b71b05cd8
diff --git a/src/main/java/com/g9/g9backend/G9BackendApplication.java b/src/main/java/com/g9/g9backend/G9BackendApplication.java
index aca5308..c241d07 100644
--- a/src/main/java/com/g9/g9backend/G9BackendApplication.java
+++ b/src/main/java/com/g9/g9backend/G9BackendApplication.java
@@ -1,9 +1,13 @@
package com.g9.g9backend;
+import com.github.jeffreyning.mybatisplus.conf.EnableMPP;
+import org.mybatis.spring.annotation.MapperScan;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
@SpringBootApplication
+@MapperScan("com.g9.g9backend.mapper")
+@EnableMPP
public class G9BackendApplication {
public static void main(String[] args) {