seatonwan9
2025-08-28 1cda9be49d77c83bdab4cfea7e3558fd4064bdb1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
package com.webmanage;
 
import org.mybatis.spring.annotation.MapperScan;
import org.springframework.scheduling.annotation.EnableAsync;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
 
/**
 * 积分管理系统启动类
 * 
 * @author webmanage
 * @date 2024-08-07
 */
@SpringBootApplication
@EnableAsync
@MapperScan("com.webmanage.mapper")
public class WebManageApplication {
 
    public static void main(String[] args) {
        SpringApplication.run(WebManageApplication.class, args);
        System.out.println("积分管理系统启动成功!");
    }
}