21 lines
506 B
Java
21 lines
506 B
Java
package com.mzaxd.bps;
|
|
|
|
import org.mybatis.spring.annotation.MapperScan;
|
|
import org.springframework.boot.SpringApplication;
|
|
import org.springframework.boot.autoconfigure.SpringBootApplication;
|
|
import org.springframework.scheduling.annotation.EnableScheduling;
|
|
|
|
/**
|
|
* @author root
|
|
*/
|
|
@SpringBootApplication
|
|
@EnableScheduling
|
|
@MapperScan("com.mzaxd.bps.mapper")
|
|
public class BPSApplication {
|
|
|
|
public static void main(String[] args) {
|
|
SpringApplication.run(BPSApplication.class, args);
|
|
}
|
|
|
|
}
|