2023-03-16 09:31:27 +08:00
|
|
|
package com.njcn.prepare;
|
2022-10-12 16:05:34 +08:00
|
|
|
|
2022-11-01 20:14:55 +08:00
|
|
|
import com.github.jeffreyning.mybatisplus.conf.EnableMPP;
|
2022-10-12 16:05:34 +08:00
|
|
|
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;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @author hongawen
|
|
|
|
|
* @version 1.0.0
|
|
|
|
|
* @date 2021年12月14日 20:33
|
|
|
|
|
*/
|
|
|
|
|
@Slf4j
|
2022-11-01 20:14:55 +08:00
|
|
|
@MapperScan("com.njcn.**.mapper")
|
2022-10-12 16:05:34 +08:00
|
|
|
@EnableFeignClients(basePackages = "com.njcn")
|
|
|
|
|
@SpringBootApplication(scanBasePackages = "com.njcn")
|
2022-11-01 20:14:55 +08:00
|
|
|
@EnableMPP
|
2022-10-13 19:03:58 +08:00
|
|
|
public class PrepareHarmonicApplication {
|
2022-10-12 16:05:34 +08:00
|
|
|
|
|
|
|
|
public static void main(String[] args) {
|
2022-10-13 19:03:58 +08:00
|
|
|
SpringApplication.run(PrepareHarmonicApplication.class,args);
|
2022-10-12 16:05:34 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|