package com.dy.pipIrrSell; import com.dy.common.multiDataSource.EnableMultiDataSource; import org.mybatis.spring.annotation.MapperScan; import org.springframework.boot.SpringApplication; import org.springframework.boot.autoconfigure.SpringBootApplication; import org.springframework.context.annotation.ComponentScan; import org.springframework.context.annotation.EnableAspectJAutoProxy; /** * @author ZhuBaoMin * @date 2023/12/7 15:07 * @LastEditTime 2023/12/7 15:07 * @Description */ @SpringBootApplication @EnableAspectJAutoProxy @EnableMultiDataSource @ComponentScan(basePackages = {"com.dy.common", "com.dy.pipIrrGlobal", "com.dy.pipIrrSell"}) @MapperScan(basePackages={"com.dy.pipIrrGlobal.daoSe"}) public class PipIrrSellApplication { public static void main(String[] args) { SpringApplication.run(PipIrrSellApplication.class, args); } }