BenchmarkingHistroyMain.java 591 B

12345678910111213141516171819
  1. package com.gyee.benchmarkinghistroy;
  2. import org.mybatis.spring.annotation.MapperScan;
  3. import org.springframework.boot.SpringApplication;
  4. import org.springframework.boot.autoconfigure.SpringBootApplication;
  5. /**
  6. * @ClassName : BenchmarkingHistroyMain
  7. * @Author : xieshengjie
  8. * @Date: 2021/9/29 16:14
  9. * @Description : 对标管理历史计算服务
  10. */
  11. @SpringBootApplication
  12. @MapperScan("com.gyee.benchmarkinghistroy.mapper")
  13. public class BenchmarkingHistroyMain {
  14. public static void main(String[] args) {
  15. SpringApplication.run(BenchmarkingHistroyMain.class, args);
  16. }
  17. }