行政管理模块
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

26 lines
877 B

package com.ccsens.ptccsens;
import org.mybatis.spring.annotation.MapperScan;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.boot.web.servlet.ServletComponentScan;
import org.springframework.context.annotation.ComponentScan;
import org.springframework.context.annotation.EnableAspectJAutoProxy;
import org.springframework.context.annotation.FilterType;
import org.springframework.scheduling.annotation.EnableAsync;
/**
* @author whj
*/
@MapperScan(basePackages = {"com.ccsens.ptccsens.persist.*"})
@ServletComponentScan
@EnableAsync
@SpringBootApplication
@ComponentScan(basePackages = {"com.ccsens","com.ccsensptos"})
public class PtCcsensApplication {
public static void main(String[] args) {
SpringApplication.run(PtCcsensApplication.class, args);
}
}