package com.gyee.benchmarkinghistroy; import org.mybatis.spring.annotation.MapperScan; import org.springframework.boot.SpringApplication; import org.springframework.boot.autoconfigure.SpringBootApplication; /** * @ClassName : BenchmarkingHistroyMain * @Author : xieshengjie * @Date: 2021/9/29 16:14 * @Description : 对标管理历史计算服务 */ @SpringBootApplication @MapperScan("com.gyee.benchmarkinghistroy.mapper") public class BenchmarkingHistroyMain { public static void main(String[] args) { SpringApplication.run(BenchmarkingHistroyMain.class, args); } }