2022-02-12 08:48:57 +08:00
|
|
|
package com.xkrs;
|
|
|
|
|
|
|
|
import org.springframework.boot.SpringApplication;
|
|
|
|
import org.springframework.boot.autoconfigure.SpringBootApplication;
|
2022-02-28 16:48:02 +08:00
|
|
|
import org.springframework.context.annotation.ComponentScan;
|
2022-02-12 08:48:57 +08:00
|
|
|
|
|
|
|
@SpringBootApplication
|
2022-02-28 16:48:02 +08:00
|
|
|
@ComponentScan(basePackages = {"com.xkrs.model.entity"})
|
2022-02-12 08:48:57 +08:00
|
|
|
public class WordAndExcelApplication {
|
|
|
|
|
|
|
|
public static void main(String[] args) {
|
|
|
|
SpringApplication.run(WordAndExcelApplication.class, args);
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|