Seamher | b222aaa | 2025-03-18 14:37:10 +0800 | [diff] [blame] | 1 | package com.g9.g9backend; |
| 2 | |
xiukira | 687b9cb | 2025-05-29 15:15:02 +0800 | [diff] [blame^] | 3 | import com.github.jeffreyning.mybatisplus.conf.EnableMPP; |
| 4 | import org.mybatis.spring.annotation.MapperScan; |
Seamher | b222aaa | 2025-03-18 14:37:10 +0800 | [diff] [blame] | 5 | import org.springframework.boot.SpringApplication; |
| 6 | import org.springframework.boot.autoconfigure.SpringBootApplication; |
| 7 | |
| 8 | @SpringBootApplication |
xiukira | 687b9cb | 2025-05-29 15:15:02 +0800 | [diff] [blame^] | 9 | @MapperScan("com.g9.g9backend.mapper") |
| 10 | @EnableMPP |
Seamher | b222aaa | 2025-03-18 14:37:10 +0800 | [diff] [blame] | 11 | public class G9BackendApplication { |
| 12 | |
| 13 | public static void main(String[] args) { |
| 14 | SpringApplication.run(G9BackendApplication.class, args); |
| 15 | } |
| 16 | |
| 17 | } |