package com.njcn.event; import lombok.extern.slf4j.Slf4j; import org.mybatis.spring.annotation.MapperScan; import org.springframework.boot.SpringApplication; import org.springframework.boot.autoconfigure.SpringBootApplication; import org.springframework.cloud.openfeign.EnableFeignClients; /** * * @return * @author hongawen * @date 2022-03-07 15:37:00 */ @Slf4j @MapperScan("com.njcn.**.mapper") @EnableFeignClients(basePackages = "com.njcn") @SpringBootApplication(scanBasePackages = "com.njcn") public class EventBootApplication { public static void main(String[] args) { SpringApplication.run(EventBootApplication.class, args); } }