29 lines
689 B
Java
29 lines
689 B
Java
|
|
package com.njcn.harmonic;
|
||
|
|
|
||
|
|
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;
|
||
|
|
|
||
|
|
|
||
|
|
/**
|
||
|
|
* 功能描述:
|
||
|
|
* TODO
|
||
|
|
*
|
||
|
|
* @return
|
||
|
|
* @author xy
|
||
|
|
* @date 2021/12/27 11:38
|
||
|
|
*/
|
||
|
|
@Slf4j
|
||
|
|
@MapperScan("com.njcn.**.mapper")
|
||
|
|
@EnableFeignClients(basePackages = "com.njcn")
|
||
|
|
@SpringBootApplication(scanBasePackages = "com.njcn")
|
||
|
|
public class HarmonicBootApplication {
|
||
|
|
|
||
|
|
public static void main(String[] args) {
|
||
|
|
SpringApplication.run(HarmonicBootApplication.class, args);
|
||
|
|
}
|
||
|
|
|
||
|
|
}
|