package com.gyee.benchmarkingweb; import org.mybatis.spring.annotation.MapperScan; import org.springframework.boot.SpringApplication; import org.springframework.boot.autoconfigure.SpringBootApplication; import org.springframework.cloud.client.discovery.EnableDiscoveryClient; /** * @ClassName : BenchmarkingwebMain * @Author : xieshengjie * @Date: 2021/11/16 15:15 * @Description : 对标管理主启动类 */ @SpringBootApplication @MapperScan("com.gyee.benchmarkingweb.mapper") @EnableDiscoveryClient public class BenchmarkingwebMain { public static void main(String[] args) { SpringApplication.run(BenchmarkingwebMain.class,args); } }