package com.njcn.access; 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; /** * @author hongawen * @version 1.0.0 * @date 2021年12月09日 20:59 */ @Slf4j @MapperScan("com.njcn.**.mapper") @EnableFeignClients(basePackages = "com.njcn") @SpringBootApplication(scanBasePackages = "com.njcn") public class AccessBootApplication { public static void main(String[] args) { SpringApplication.run(AccessBootApplication.class, args); } }