2024-08-13 19:29:04 +08:00
|
|
|
package com.njcn.gather;
|
|
|
|
|
|
|
|
|
|
import lombok.extern.slf4j.Slf4j;
|
2024-10-30 20:37:42 +08:00
|
|
|
import org.mybatis.spring.annotation.MapperScan;
|
2024-08-13 19:29:04 +08:00
|
|
|
import org.springframework.boot.SpringApplication;
|
|
|
|
|
import org.springframework.boot.autoconfigure.SpringBootApplication;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@Slf4j
|
2024-10-30 20:37:42 +08:00
|
|
|
@MapperScan("com.njcn.**.mapper")
|
2024-08-13 19:29:04 +08:00
|
|
|
@SpringBootApplication(scanBasePackages = "com.njcn")
|
|
|
|
|
public class EntranceApplication {
|
|
|
|
|
|
|
|
|
|
public static void main(String[] args) {
|
|
|
|
|
SpringApplication.run(EntranceApplication.class, args);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|